Sets up n-cpu to migrate domains via SSH. By default, hosts attempt
to connect to each other as root, so this specifies STACK_USER instead.
Change-Id: Ic6e868091c89a2cc6b2f0fada3f7e95002aaff8b
| ... | ... |
@@ -42,6 +42,7 @@ function configure_nova_hypervisor {
|
| 42 | 42 |
iniset $NOVA_CONF libvirt virt_type "$LIBVIRT_TYPE" |
| 43 | 43 |
iniset $NOVA_CONF libvirt cpu_mode "none" |
| 44 | 44 |
iniset $NOVA_CONF libvirt use_usb_tablet "False" |
| 45 |
+ iniset $NOVA_CONF libvirt live_migration_uri "qemu+ssh://$STACK_USER@%s/system" |
|
| 45 | 46 |
iniset $NOVA_CONF DEFAULT default_ephemeral_format "ext4" |
| 46 | 47 |
iniset $NOVA_CONF DEFAULT compute_driver "libvirt.LibvirtDriver" |
| 47 | 48 |
LIBVIRT_FIREWALL_DRIVER=${LIBVIRT_FIREWALL_DRIVER:-"nova.virt.libvirt.firewall.IptablesFirewallDriver"}
|