diff options
author | Bruce Ashfield <bruce.ashfield@windriver.com> | 2014-09-03 01:08:14 -0400 |
---|---|---|
committer | Bruce Ashfield <bruce.ashfield@windriver.com> | 2014-09-03 01:08:14 -0400 |
commit | 0881d9805118707ece89be147612d02a27e3201b (patch) | |
tree | b4dbfa68c0ca243637ca4c292ff066867319c177 /meta-openstack/recipes-devtools/python/python-nova/nova.conf | |
parent | f3c2d6637bfc0839214b68dcf36fc5cfb64c2cbc (diff) | |
download | meta-cloud-services-0881d9805118707ece89be147612d02a27e3201b.tar.gz |
nova: update to juno configuration requirements
To boot a nested guest in juno, we need to relocate the virtualization
type config setting into the [libvirt] section.
With this, we can sucessfully launch a guest.
Signed-off-by: Bruce Ashfield <bruce.ashfield@windriver.com>
Diffstat (limited to 'meta-openstack/recipes-devtools/python/python-nova/nova.conf')
-rw-r--r-- | meta-openstack/recipes-devtools/python/python-nova/nova.conf | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/meta-openstack/recipes-devtools/python/python-nova/nova.conf b/meta-openstack/recipes-devtools/python/python-nova/nova.conf index fbaaa78..59a6b52 100644 --- a/meta-openstack/recipes-devtools/python/python-nova/nova.conf +++ b/meta-openstack/recipes-devtools/python/python-nova/nova.conf | |||
@@ -2,8 +2,6 @@ | |||
2 | # firewall_driver = nova.virt.libvirt.firewall.IptablesFirewallDriver | 2 | # firewall_driver = nova.virt.libvirt.firewall.IptablesFirewallDriver |
3 | firewall_driver = nova.virt.firewall.NoopFirewallDriver | 3 | firewall_driver = nova.virt.firewall.NoopFirewallDriver |
4 | compute_driver = libvirt.LibvirtDriver | 4 | compute_driver = libvirt.LibvirtDriver |
5 | libvirt_type = kvm | ||
6 | libvirt_cpu_mode = none | ||
7 | default_floating_pool = public | 5 | default_floating_pool = public |
8 | fixed_range = | 6 | fixed_range = |
9 | force_dhcp_release = True | 7 | force_dhcp_release = True |
@@ -21,7 +19,6 @@ my_ip = %CONTROLLER_IP% | |||
21 | glance_host = %CONTROLLER_IP% | 19 | glance_host = %CONTROLLER_IP% |
22 | lock_path=/var/lock/nova/ | 20 | lock_path=/var/lock/nova/ |
23 | state_path=/var/run/nova/ | 21 | state_path=/var/run/nova/ |
24 | libvirt_images_type = %LIBVIRT_IMAGES_TYPE% | ||
25 | 22 | ||
26 | #VNC | 23 | #VNC |
27 | vnc_enabled = True | 24 | vnc_enabled = True |
@@ -96,4 +93,7 @@ admin_tenant_name = %SERVICE_TENANT_NAME% | |||
96 | admin_user = %SERVICE_USER% | 93 | admin_user = %SERVICE_USER% |
97 | admin_password = %SERVICE_PASSWORD% | 94 | admin_password = %SERVICE_PASSWORD% |
98 | 95 | ||
99 | 96 | [libvirt] | |
97 | virt_type = kvm | ||
98 | libvirt_cpu_mode = none | ||
99 | libvirt_images_type = %LIBVIRT_IMAGES_TYPE% | ||