diff options
author | Marco Platania <platania@research.att.com> | 2017-06-05 15:35:45 -0400 |
---|---|---|
committer | Marco Platania <platania@research.att.com> | 2017-06-05 15:35:45 -0400 |
commit | 9f94d8c2fd838c1607f630dfdd5f936605d9873f (patch) | |
tree | a9d3150f74a788bdb829e8a8dd6f95d722ca4af4 /heat/vLB/dnsscaling_openstack.yaml | |
parent | a8a9fec9dd7ab059c46a686d81a9b2c41537d6b8 (diff) |
Parametrize CIDR and Netmask in the demos
Change-Id: I01f46fc1ee5cd1774e3db2e3381081dc9fc4c967
Signed-off-by: Marco Platania <platania@research.att.com>
Diffstat (limited to 'heat/vLB/dnsscaling_openstack.yaml')
-rw-r--r-- | heat/vLB/dnsscaling_openstack.yaml | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/heat/vLB/dnsscaling_openstack.yaml b/heat/vLB/dnsscaling_openstack.yaml index 4313c7bb..2e07ca85 100644 --- a/heat/vLB/dnsscaling_openstack.yaml +++ b/heat/vLB/dnsscaling_openstack.yaml @@ -57,6 +57,14 @@ parameters: type: string label: ONAP management sub-network name or ID description: Private sub-network that connects ONAP component and the VNF + vlb_private_net_cidr: + type: string + label: vLoadBalancer private network CIDR + description: The CIDR of the vLoadBalancer private network + onap_private_net_cidr: + type: string + label: ONAP private network CIDR + description: The CIDR of the protected private network vlb_private_ip_0: type: string label: vLoadBalancer private IP address towards the private network @@ -175,6 +183,8 @@ resources: __repo_url_artifacts__: { get_param: repo_url_artifacts } __demo_artifacts_version__: { get_param: demo_artifacts_version } __install_script_version__: { get_param: install_script_version } + __vlb_private_net_cidr__: { get_param: vlb_private_net_cidr } + __onap_private_net_cidr__: { get_param: onap_private_net_cidr } __cloud_env__: { get_param: cloud_env } template: | #!/bin/bash @@ -189,6 +199,8 @@ resources: echo "__repo_url_artifacts__" > /opt/config/repo_url_artifacts.txt echo "__demo_artifacts_version__" > /opt/config/demo_artifacts_version.txt echo "__install_script_version__" > /opt/config/install_script_version.txt + echo "__vlb_private_net_cidr__" > /opt/config/vlb_private_net_cidr.txt + echo "__onap_private_net_cidr__" > /opt/config/onap_private_net_cidr.txt echo "__cloud_env__" > /opt/config/cloud_env.txt # Download and run install script |