diff options
author | MichaelMorris <michael.morris@est.tech> | 2021-04-09 16:09:07 +0100 |
---|---|---|
committer | Christophe Closset <christophe.closset@intl.att.com> | 2021-04-19 12:54:47 +0000 |
commit | aaf0b66c894b0a05fa3ce6a08a71047909e5a913 (patch) | |
tree | 58bfc09fa0d86214160903836365f1a718158b44 /catalog-be | |
parent | a82ac17a702339bdb1af830a6581e3b30b3f5ec1 (diff) |
Include 4.1.1 vduCp in deployment
Node type was already added, but not include in the list of types to be deployed during install or upgrade
Signed-off-by: MichaelMorris <michael.morris@est.tech>
Issue-ID: SDC-3509
Change-Id: I71a3a9942cb7d5b6adb194b7e7f2aa4be6533ac6
Diffstat (limited to 'catalog-be')
3 files changed, 3 insertions, 1 deletions
diff --git a/catalog-be/src/main/resources/import/tosca/nfv-types/4.1.1/vduCp/vduCp.yml b/catalog-be/src/main/resources/import/tosca/nfv-types/4.1.1/vduCp/vduCp.yml index 5d1db0211d..622f5ed7bb 100644 --- a/catalog-be/src/main/resources/import/tosca/nfv-types/4.1.1/vduCp/vduCp.yml +++ b/catalog-be/src/main/resources/import/tosca/nfv-types/4.1.1/vduCp/vduCp.yml @@ -27,7 +27,7 @@ node_types: description: Describes the type of the virtual network interface realizing the CPs instantiated from this CPD required: false constraints: - - valid_values: [ normal, macvtap, direct, baremetal, virtio-forwarder, direct-physical, smart-nic, bridge, ipvlan, loopback, macvlan, ptp, vlan, host-device ] + - valid_values: [ normal, macvtap, direct, baremetal, virtio, virtio-forwarder, direct-physical, smart-nic, bridge, ipvlan, loopback, macvlan, ptp, vlan, host-device ] requirements: - virtual_link: capability: tosca.capabilities.nfv.VirtualLinkable diff --git a/catalog-be/src/main/resources/scripts/sdcBePy/tosca/data/onapTypesToUpgrade.json b/catalog-be/src/main/resources/scripts/sdcBePy/tosca/data/onapTypesToUpgrade.json index 8167b09100..96c30e25f0 100644 --- a/catalog-be/src/main/resources/scripts/sdcBePy/tosca/data/onapTypesToUpgrade.json +++ b/catalog-be/src/main/resources/scripts/sdcBePy/tosca/data/onapTypesToUpgrade.json @@ -25,6 +25,7 @@ "VNF", "osContainer", "osContainerGroup", + "vduCp", "virtualCp" ], "onap": [ diff --git a/catalog-be/src/main/resources/scripts/sdcBePy/tosca/models/normativeTypesList.py b/catalog-be/src/main/resources/scripts/sdcBePy/tosca/models/normativeTypesList.py index b6cfb9e264..0ee2d6ca99 100644 --- a/catalog-be/src/main/resources/scripts/sdcBePy/tosca/models/normativeTypesList.py +++ b/catalog-be/src/main/resources/scripts/sdcBePy/tosca/models/normativeTypesList.py @@ -138,6 +138,7 @@ def get_nfv_4_1_1(base_file_location="/"): ["VNF", "osContainer", "osContainerGroup", + "vduCp", "virtualCp"]) def get_onap(base_file_location="/"): |