summaryrefslogtreecommitdiffstats
path: root/catalog-be/src/main/resources/scripts/sdcBePy/tosca/models
diff options
context:
space:
mode:
authorMichaelMorris <michael.morris@est.tech>2021-02-05 16:18:52 +0000
committerChristophe Closset <christophe.closset@intl.att.com>2021-02-21 07:55:36 +0000
commit8cc03e2c78639be5500ab50f3ebaaf7d64404775 (patch)
tree1c4d82ba477c4de058f8817b717deaa2f3f4e877 /catalog-be/src/main/resources/scripts/sdcBePy/tosca/models
parent751ac4b93e575c56e29cdbbcf95e0aa899d914a2 (diff)
Update node and data types for SOL001 3.3.1 + CNF enhancements
Types in 2.7.1 folder are types valid for v3.3.1 that have not changed from v2.7.1 Types in 4.1.1 folder are the CNF enhancements which it is assumed will be in v4.1.1 Includes some changes in functionality to support: 1. Deployment of both existing (2.5.1) versions of types and new versions of types through sdc-BE-init 2. Selection of the correct node type definition version at onboarding of an ETSI SOL004 VNF/CNF csar, based on the declared version supported in the csar (i.e. when a 3.3.1 csar is imported, the node type definitions valid for 3.3.1 are used (rather than current logic which always selects the latest version) Signed-off-by: MichaelMorris <michael.morris@est.tech> Issue-ID: SDC-3470 Change-Id: Iff835d230b173b9d44349caa6b0b11d783e8f8d3
Diffstat (limited to 'catalog-be/src/main/resources/scripts/sdcBePy/tosca/models')
-rw-r--r--catalog-be/src/main/resources/scripts/sdcBePy/tosca/models/normativeToUpdateList.py24
-rw-r--r--catalog-be/src/main/resources/scripts/sdcBePy/tosca/models/normativeTypesList.py24
2 files changed, 44 insertions, 4 deletions
diff --git a/catalog-be/src/main/resources/scripts/sdcBePy/tosca/models/normativeToUpdateList.py b/catalog-be/src/main/resources/scripts/sdcBePy/tosca/models/normativeToUpdateList.py
index a2830185d5..2d243d80ab 100644
--- a/catalog-be/src/main/resources/scripts/sdcBePy/tosca/models/normativeToUpdateList.py
+++ b/catalog-be/src/main/resources/scripts/sdcBePy/tosca/models/normativeToUpdateList.py
@@ -27,13 +27,20 @@ def get_heat_and_normative_to_update_list(types, base_file_location):
]
-def get_nfv_onap_sol_to_update_list(types, base_file_location):
+def get_onap_sol_to_update_list(types, base_file_location):
return [
- get_nfv(types, base_file_location),
get_onap(types, base_file_location),
get_sol(types, base_file_location)
]
+def get_nfv_to_update_list(types, base_file_location):
+ return [
+ get_nfv(types, base_file_location),
+ get_nfv_2_7_1(types, base_file_location),
+ get_nfv_3_3_1(types, base_file_location),
+ get_nfv_4_1_1(types, base_file_location),
+ ]
+
def get_heat(types, base_location="/"):
return NormativeTypeCandidate(base_location + "heat-types/",
@@ -48,7 +55,18 @@ def get_normative(types, base_location="/"):
def get_nfv(types, base_location="/"):
return NormativeTypeCandidate(base_location + "nfv-types/",
types.get_type("nfv"))
-
+
+def get_nfv_2_7_1(types, base_location="/"):
+ return NormativeTypeCandidate(base_location + "nfv-types/2.7.1/",
+ types.get_type("nfv_2_7_1"))
+
+def get_nfv_3_3_1(types, base_location="/"):
+ return NormativeTypeCandidate(base_location + "nfv-types/3.3.1/",
+ types.get_type("nfv_3_3_1"))
+
+def get_nfv_4_1_1(types, base_location="/"):
+ return NormativeTypeCandidate(base_location + "nfv-types/4.1.1/",
+ types.get_type("nfv_4_1_1"))
def get_onap(types, base_location="/"):
return NormativeTypeCandidate(base_location + "onap-types/",
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 46b8d9b5bc..12a4491b96 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
@@ -6,6 +6,9 @@ def get_normative_type_candidate_list(base_file_location):
get_normative(base_file_location),
get_heat(base_file_location),
get_nfv(base_file_location),
+ get_nfv_2_7_1(base_file_location),
+ get_nfv_3_3_1(base_file_location),
+ get_nfv_4_1_1(base_file_location),
get_onap(base_file_location),
get_sol(base_file_location)
]
@@ -110,7 +113,26 @@ def get_nfv(base_file_location="/"):
"PonUni",
"OltNni",
"OntNni"])
-
+
+def get_nfv_2_7_1(base_file_location="/"):
+ return NormativeTypeCandidate(base_file_location + "nfv-types/2.7.1/",
+ ["vduCompute",
+ "vduVirtualFileStorage",
+ "vnfExtCp",
+ "vduCp",
+ "vipCp"])
+
+def get_nfv_3_3_1(base_file_location="/"):
+ return NormativeTypeCandidate(base_file_location + "nfv-types/3.3.1/",
+ ["vduVirtualBlockStorage",
+ "VNF"])
+
+def get_nfv_4_1_1(base_file_location="/"):
+ return NormativeTypeCandidate(base_file_location + "nfv-types/4.1.1/",
+ ["VNF",
+ "osContainer",
+ "osContainerGroup",
+ "virtualCp"])
def get_onap(base_file_location="/"):
return NormativeTypeCandidate(base_file_location + "onap-types/",