From e174762404a1c5c8c238428bc2e33e845a0c5941 Mon Sep 17 00:00:00 2001 From: Brian Freeman Date: Thu, 12 Jul 2018 08:11:29 -0500 Subject: Fix subnet to use dhcp not preload Issue-ID: TEST-104 Change-Id: I9d44f9617ca02546dbe9d7355ec4ded5eaba5d23 Signed-off-by: Brian Freeman --- heat/vCPE/vbrgemu/base_vcpe_vbrgemu.yaml | 12 +++++++----- 1 file changed, 7 insertions(+), 5 deletions(-) (limited to 'heat/vCPE/vbrgemu/base_vcpe_vbrgemu.yaml') diff --git a/heat/vCPE/vbrgemu/base_vcpe_vbrgemu.yaml b/heat/vCPE/vbrgemu/base_vcpe_vbrgemu.yaml index 50d79022..52941794 100644 --- a/heat/vCPE/vbrgemu/base_vcpe_vbrgemu.yaml +++ b/heat/vCPE/vbrgemu/base_vcpe_vbrgemu.yaml @@ -67,10 +67,11 @@ parameters: # type: string # label: vBRGEMU Home private network CIDR # description: The CIDR of the input side of vBRGEMU Home private network - vbrgemu_private_ip_0: - type: string - label: vGW private IP address - description: Private IP address towards the BRGEMU-BNG network +## vbrgemu_private_ip_0: +## type: string +## label: vGW private IP address +## description: Private IP address towards the BRGEMU-BNG network +## VPP will use DHCP so does not need to be provided by preload #vbrgemu_private_ip_1: # type: string # label: vGW private IP address @@ -186,7 +187,8 @@ resources: type: OS::Neutron::Port properties: network: { get_param: vbrgemu_bng_private_net_id } - fixed_ips: [{"subnet": { get_param: vbrgemu_bng_private_subnet_id }, "ip_address": { get_param: vbrgemu_private_ip_0 }}] + fixed_ips: [{"subnet": { get_param: vbrgemu_bng_private_subnet_id }}] + ## fixed_ips: [{"subnet": { get_param: vbrgemu_bng_private_subnet_id }, "ip_address": { get_param: vbrgemu_private_ip_0 }}] #vbrgemu_private_1_port: # type: OS::Neutron::Port -- cgit 1.2.3-korg