diff options
author | Marco Platania <platania@research.att.com> | 2019-09-12 09:08:37 -0400 |
---|---|---|
committer | Marco Platania <platania@research.att.com> | 2019-09-12 09:08:37 -0400 |
commit | 1dfe955fc03f86fe0fea055d624da1338c5830bb (patch) | |
tree | 86fd79779bcde38939c7dd8d98c1d806ca52d180 /heat/vLB_CDS | |
parent | 02a3f17f4cf43689bd95d990d5f11fa2a62a2808 (diff) |
Fix Honeycomb installation in vDNS VM
Issue-ID: INT-853
Signed-off-by: Marco Platania <platania@research.att.com>
Change-Id: I8dd1cde406836de417fc7e1fabdf7b89d18b7fd2
Diffstat (limited to 'heat/vLB_CDS')
-rw-r--r-- | heat/vLB_CDS/vdns.env | 1 | ||||
-rw-r--r-- | heat/vLB_CDS/vdns.yaml | 8 |
2 files changed, 8 insertions, 1 deletions
diff --git a/heat/vLB_CDS/vdns.env b/heat/vLB_CDS/vdns.env index f5f17b97..8132e3e0 100644 --- a/heat/vLB_CDS/vdns.env +++ b/heat/vLB_CDS/vdns.env @@ -33,6 +33,7 @@ parameters: # APP/USER_DATA nb_api_version: 1.2.0 install_script_version: 1.5.0-SNAPSHOT + demo_artifacts_version: 1.5.0-SNAPSHOT cloud_env: PUT openstack OR rackspace HERE sec_group: PUT THE ONAP SECURITY GROUP HERE nexus_artifact_repo: https://nexus.onap.org
\ No newline at end of file diff --git a/heat/vLB_CDS/vdns.yaml b/heat/vLB_CDS/vdns.yaml index d3f6e7d5..7a7ab306 100644 --- a/heat/vLB_CDS/vdns.yaml +++ b/heat/vLB_CDS/vdns.yaml @@ -112,7 +112,11 @@ parameters: install_script_version: type: string label: Installation script version number - description: Version number of the scripts that install the vFW demo app + description: Version number of the scripts that install the vLB/vDNS demo app + demo_artifacts_version: + type: string + label: Artifacts version used in demo vnfs + description: Artifacts (jar, tar.gz) version used in demo vnfs nb_api_version: type: string label: Northbound API version @@ -183,6 +187,7 @@ resources: __oam_private_ipaddr__: { get_param: vdns_onap_private_ip_0 } __nb_api_version__: { get_param: nb_api_version } __install_script_version__: { get_param: install_script_version } + __demo_artifacts_version__: { get_param: demo_artifacts_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 } @@ -199,6 +204,7 @@ resources: echo "__oam_private_ipaddr__" > /opt/config/oam_private_ipaddr.txt echo "__nb_api_version__" > /opt/config/nb_api_version.txt echo "__install_script_version__" > /opt/config/install_script_version.txt + echo "__demo_artifacts_version__" > /opt/config/demo_artifacts_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 |