New Question

Revision history [back]

click to hide/show revision 1
initial version

Hello,

So, there is a configuration option in nova, called instance_name_template [1]. By default it is, instance-%08x, which results in VM names as you've already seen. You can change this behaviour, by setting this configuration option in the C:\Program Files\Cloudbase Solutions\OpenStack\Nova\etc\nova.conf files on your compute nodes to something that suites your needs, but make sure that you do it across all your compute nodes.

Also, make sure that the instance_name_template you set will ensure unique names for each instance, otherwise you'll end up with instances having the same names on your compute nodes. In particular, for you scenario, you can have this template: instance_name_template = instance-%(display_name)s-%(id)08x. This means that the VM name contains the name you pass in to nova boot (for example, nova boot --image yourspecialmage Special-1). Do keep in mind that this will be done for each instance.

As far Linux Integration Services go, you can install them on your images, and then register those images into glance. Nova doesn't install them. Also, Windows images do not require any Integration Services on Hyper-V.

Not sure I understand what you mean by CD drive options, but nova can attach a configdrive to your instance, containing any given userdata passed by you to the instance (including scripts - just make sure you have cloud-init for Linux / cloudbase-init for Windows installed on your images). You can have the force_config_drive=True in your compute nodes' nova.conf file. Alternatively, if you have cloud-init / cloudbase-init installed in your guest VMs, they will fetch this metadata from nova.

[1] http://docs.openstack.org/mitaka/config-reference/compute/config-options.html

Best regards,

Claudiu Belu