Bugfix 1550: Setting a custom release name for Helm based kdus 01/10901/2 v9.1.2
authorromeromonser <garomero@indra.es>
Fri, 28 May 2021 08:59:05 +0000 (10:59 +0200)
committerguzman <jmguzman@whitestack.com>
Thu, 3 Jun 2021 14:41:36 +0000 (16:41 +0200)
Change-Id: I0fa35bc062f19ab838072a9ee267bbc2ba4b3e48
Signed-off-by: romeromonser <garomero@indra.es>
osm_nbi/instance_topics.py
osm_nbi/validation.py

index 84ba177..da0ba9a 100644 (file)
@@ -522,9 +522,14 @@ class NsrTopic(BaseTopic):
             if kdu_params and kdu_params.get("k8s-namespace"):
                 kdu_k8s_namespace = kdu_params["k8s-namespace"]
 
+            kdu_deployment_name = ""
+            if kdu_params and kdu_params.get("kdu-deployment-name"):
+                kdu_deployment_name = kdu_params.get("kdu-deployment-name")
+
             kdur = {
                 "additionalParams": additional_params,
                 "k8s-namespace": kdu_k8s_namespace,
+                "kdu-deployment-name": kdu_deployment_name,
                 "kdu-name": kdu["name"],
                 # TODO      "name": ""     Name of the VDU in the VIM
                 "ip-address": None,  # mgmt-interface filled by LCM
index 5b6cce1..de8f913 100644 (file)
@@ -261,6 +261,7 @@ additional_params_for_vnf = {
                         "kdu_model": name_schema,
                         "k8s-namespace": name_schema,
                         "config-units": integer1_schema,    # number of configuration units of this knf, by default 1
+                        "kdu-deployment-name": name_schema,
                     },
                     "required": ["kdu_name"],
                     "minProperties": 2,