From fd5d9d8b4bce3c637ce486805b3d9a50369d2cdd Mon Sep 17 00:00:00 2001 From: Ricardo Carrillo Cruz Date: Tue, 23 Aug 2016 11:08:53 +0200 Subject: [PATCH] Correct vanilla Neutron ranges The new IP range for vanilla is 15.184.64.0/19, amending so Neutron can allocate IPs. Change-Id: Ide942bacec5ee78f33e99fbbf1f057415bb320ad --- manifests/site.pp | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/manifests/site.pp b/manifests/site.pp index 965824bffe..90882e6ce7 100644 --- a/manifests/site.pp +++ b/manifests/site.pp @@ -1253,12 +1253,12 @@ node 'controller00.vanilla.ic.openstack.org' { controller_public_address => $::fqdn, openstackci_password => hiera('openstackci_infracloud_password'), openstackjenkins_password => hiera('openstackjenkins_infracloud_password'), - neutron_subnet_cidr => '15.184.52.0/22', - neutron_subnet_gateway => '15.184.52.1', + neutron_subnet_cidr => '15.184.64.0/19', + neutron_subnet_gateway => '15.184.64.1', neutron_subnet_allocation_pools => [ - 'start=15.184.53.2,end=15.184.53.254', - 'start=15.184.54.2,end=15.184.54.254', - 'start=15.184.55.2,end=15.184.55.254' + 'start=15.184.65.2,end=15.184.65.254', + 'start=15.184.66.2,end=15.184.66.254', + 'start=15.184.67.2,end=15.184.67.254' ] } }