[Rdo-list] havana-test-day: packstack CONFIG_NOVA_NETWORK_VLAN_START puppet issue

Pádraig Brady pbrady at redhat.com
Tue Sep 10 02:01:12 UTC 2013


$ packstack --allinone --os-neutron-install=n
ERROR : 'CONFIG_NOVA_NETWORK_VLAN_START'

This seems to have come from the recently merged:
https://review.openstack.org/#/c/28779/

If I apply this patch I avoid the issue:
diff --git a/packstack/puppet/templates/nova_network.pp b/packstack/puppet/templates/nova_network.pp
index 48f975d..20e6d99 100644
--- a/packstack/puppet/templates/nova_network.pp
+++ b/packstack/puppet/templates/nova_network.pp
@@ -10,9 +10,9 @@ if $manager in ['nova.network.manager.VlanManager', 'nova.network.manager.FlatDH
     $overrides['force_dhcp_release'] = false
 }
 if $manager == 'nova.network.manager.VlanManager' {
-    $overrides['vlan_start'] = '%(CONFIG_NOVA_NETWORK_VLAN_START)s'
-    $net_size = '%(CONFIG_NOVA_NETWORK_SIZE)s'
-    $net_num = '%(CONFIG_NOVA_NETWORK_NUMBER)s'
+    $overrides['vlan_start'] = 100
+    $net_size = 255
+    $net_num = 1




More information about the rdo-list mailing list