diff options
author | Lukasz Rajewski <lukasz.rajewski@orange.com> | 2020-08-20 23:24:25 +0200 |
---|---|---|
committer | Lukasz Rajewski <lukasz.rajewski@orange.com> | 2020-08-25 17:58:43 +0200 |
commit | e53a1e72467e8c272c48be0019fb7c06821a5f43 (patch) | |
tree | 3878414042e094270293456557b65502b9324376 /heat/vLB_CDS | |
parent | 0d52415e1bf52b2850eec9ff9a1d75fcf521fc91 (diff) |
VNF Software Version parameter added to CDS Heat templates
VNF Software Version parameter added to CDS base heat templates.
The purpose is to give a possibility to set the value of the
software-version attribute in generic-vnf object in time of VNF
instantiation.
Change-Id: Ia8c6d446dd538fb8ee58e4504d62ac3f2edc71e6
Issue-ID: INT-1600
Signed-off-by: Lukasz Rajewski <lukasz.rajewski@orange.com>
Diffstat (limited to 'heat/vLB_CDS')
-rw-r--r-- | heat/vLB_CDS/base_template.env | 1 | ||||
-rw-r--r-- | heat/vLB_CDS/base_template.yaml | 5 |
2 files changed, 6 insertions, 0 deletions
diff --git a/heat/vLB_CDS/base_template.env b/heat/vLB_CDS/base_template.env index 38c4e82c..c4db948a 100644 --- a/heat/vLB_CDS/base_template.env +++ b/heat/vLB_CDS/base_template.env @@ -13,6 +13,7 @@ parameters: # METADATA vnf_name: vLBMS vnf_id: vLoadBalancer_demo_app + vnf_software_version: 1.0.0 # PRIVATE KEY key_name: vlb_key diff --git a/heat/vLB_CDS/base_template.yaml b/heat/vLB_CDS/base_template.yaml index a171595f..512bc2df 100644 --- a/heat/vLB_CDS/base_template.yaml +++ b/heat/vLB_CDS/base_template.yaml @@ -58,6 +58,11 @@ parameters: type: string label: VNF NAME description: The VNF NAME is provided by ONAP + vnf_software_version: + type: string + label: VNF software version + description: VNF software version + default: 1.0.0 vlb_0_int_pktgen_private_port_0_mac: type: string label: vLB MAC address |