From 6d9a7511c261e9da05766aa32dd635462f762c64 Mon Sep 17 00:00:00 2001 From: David Garcia Date: Fri, 5 Mar 2021 15:01:54 +0100 Subject: [PATCH] Add missing parameter to generate_kdu_instance_name In the commit c4da25cc that fixes 1412 I forgot to add the kdu_name variable. Change-Id: I12697d66e590660fe27b3a5abd32634b509a4fbd Signed-off-by: David Garcia --- osm_lcm/ns.py | 1 + 1 file changed, 1 insertion(+) diff --git a/osm_lcm/ns.py b/osm_lcm/ns.py index a006f8e..ca85661 100644 --- a/osm_lcm/ns.py +++ b/osm_lcm/ns.py @@ -2195,6 +2195,7 @@ class NsLcm(LcmBase): kdu_instance = self.k8scluster_map[k8sclustertype].generate_kdu_instance_name( db_dict=db_dict_install, kdu_model=k8s_instance_info["kdu-model"], + kdu_name=k8s_instance_info["kdu-name"], ) self.update_db_2("nsrs", nsr_id, {nsr_db_path + ".kdu-instance": kdu_instance}) await self.k8scluster_map[k8sclustertype].install( -- 2.17.1