nova/nova/virt/hyperv
Joe Gordon 855fe98ef4 Fix and Gate on E265
pep8 E265 makes sure block comment start with '# '. Fix and gate on this
new rule as it helps improve comment readability.

In the few cases where the comment was just commented out code, remove
the comment.

Change-Id: Iea1c445df8ddc2b6c17a4ab697ad756eef2f91fa
2014-07-24 08:11:00 -04:00
..
README.rst Adds Hyper-V support in nova-compute (with new network_info model), including unit tests 2012-08-16 03:38:51 +03:00
__init__.py Removed copyright from empty files 2014-02-27 14:27:54 +02:00
basevolumeutils.py Merge "Fixes hyper-v volume attach when host is AD member" 2014-07-21 12:00:26 +00:00
constants.py Fixes Hyper-V SCSI slot selection 2014-07-15 23:57:44 +03:00
driver.py Use oslo.i18n 2014-07-18 14:28:09 -04:00
hostops.py Don't translate debug level logs in nova.virt 2014-06-08 00:36:49 -07:00
hostutils.py Enable flake8 H404 checking 2014-02-27 11:15:55 +04:00
imagecache.py Use oslo.i18n 2014-07-18 14:28:09 -04:00
livemigrationops.py Use oslo.i18n 2014-07-18 14:28:09 -04:00
livemigrationutils.py Fix and Gate on E265 2014-07-24 08:11:00 -04:00
migrationops.py Use oslo.i18n 2014-07-18 14:28:09 -04:00
networkutils.py Fix and Gate on E265 2014-07-24 08:11:00 -04:00
networkutilsv2.py Use oslo.i18n 2014-07-18 14:28:09 -04:00
pathutils.py Use oslo.i18n 2014-07-18 14:28:09 -04:00
rdpconsoleops.py Don't translate debug level logs in nova.virt 2014-06-08 00:36:49 -07:00
rdpconsoleutils.py Hyper-V driver RDP console access support 2014-02-07 23:41:33 +02:00
rdpconsoleutilsv2.py Hyper-V driver RDP console access support 2014-02-07 23:41:33 +02:00
snapshotops.py Use oslo.i18n 2014-07-18 14:28:09 -04:00
utilsfactory.py Hyper-V driver RDP console access support 2014-02-07 23:41:33 +02:00
vhdutils.py Add differencing vhdx resize support in Hyper-V Driver 2014-07-21 13:41:51 +03:00
vhdutilsv2.py Add differencing vhdx resize support in Hyper-V Driver 2014-07-21 13:41:51 +03:00
vif.py Fix and Gate on E265 2014-07-24 08:11:00 -04:00
vmops.py Fix and Gate on E265 2014-07-24 08:11:00 -04:00
vmutils.py Fix and Gate on E265 2014-07-24 08:11:00 -04:00
vmutilsv2.py Fix and Gate on E265 2014-07-24 08:11:00 -04:00
volumeops.py Fix and Gate on E265 2014-07-24 08:11:00 -04:00
volumeutils.py Fix and Gate on E265 2014-07-24 08:11:00 -04:00
volumeutilsv2.py Use oslo.i18n 2014-07-18 14:28:09 -04:00

README.rst

Hyper-V Volumes Management

To enable the volume features, the first thing that needs to be done is to enable the iSCSI service on the Windows compute nodes and set it to start automatically.

sc config msiscsi start= auto net start msiscsi

In Windows Server 2012, it's important to execute the following commands to prevent having the volumes being online by default:

diskpart san policy=OfflineAll exit

How to check if your iSCSI configuration is working properly:

On your OpenStack controller:

1. Create a volume with e.g. "nova volume-create 1" and note the generated volume id

On Windows:

  1. iscsicli QAddTargetPortal <your_iSCSI_target>
  2. iscsicli ListTargets

The output should contain the iqn related to your volume: iqn.2010-10.org.openstack:volume-<volume_id>

How to test Boot from volume in Hyper-V from the OpenStack dashboard:

  1. Fist of all create a volume
  2. Get the volume ID of the created volume

3. Upload and untar to the Cloud controller the next VHD image: http://dev.opennebula.org/attachments/download/482/ttylinux.vhd.gz 4. sudo dd if=/path/to/vhdfileofstep3 of=/dev/nova-volumes/volume-XXXXX <- Related to the ID of step 2 5. Launch an instance from any image (this is not important because we are just booting from a volume) from the dashboard, and don't forget to select boot from volume and select the volume created in step2. Important: Device name must be "vda".