summaryrefslogtreecommitdiffstats
path: root/common
diff options
context:
space:
mode:
authorTim Rozet <trozet@redhat.com>2015-09-01 11:33:23 -0400
committerTim Rozet <trozet@redhat.com>2015-09-01 13:24:52 -0400
commit0b37d5341d714a1bf8ef8b5637d8b8fbd7c948c2 (patch)
tree59e22d71e2a8a1c854709fde6293d3111f6c2693 /common
parent52639193804c6da3765066ce0f2aa365d381f897 (diff)
Fixes external network to services tenant and no dhcp
External network should have been provisioned as services tenant. The external network and subnet are both changed with this patch. The external subnet is also now configured to disable dhcp. JIRA: APEX-9, APEX-10 Change-Id: I3e41dc4b0678efeb0824259147008cf455d8de1e Signed-off-by: Tim Rozet <trozet@redhat.com>
Diffstat (limited to 'common')
-rw-r--r--common/puppet-opnfv/manifests/external_net_setup.pp5
1 files changed, 3 insertions, 2 deletions
diff --git a/common/puppet-opnfv/manifests/external_net_setup.pp b/common/puppet-opnfv/manifests/external_net_setup.pp
index af00f20..fc014d4 100644
--- a/common/puppet-opnfv/manifests/external_net_setup.pp
+++ b/common/puppet-opnfv/manifests/external_net_setup.pp
@@ -60,7 +60,7 @@ class opnfv::external_net_setup {
provider_network_type => flat,
provider_physical_network => 'physnet1',
router_external => true,
- tenant_name => 'admin',
+ tenant_name => 'services',
}
->
neutron_subnet { 'provider_subnet':
@@ -70,8 +70,9 @@ class opnfv::external_net_setup {
gateway_ip => $public_gateway,
allocation_pools => [ "start=${public_allocation_start},end=${public_allocation_end}" ],
dns_nameservers => $public_dns,
+ enable_dhcp => false,
network_name => 'provider_network',
- tenant_name => 'admin',
+ tenant_name => 'services',
}
->
neutron_router { 'provider_router':