fix minor error at k8scluster helm v3 deletion
Change-Id: I842ec05cbdd221599eb8b5e458f3e5b8131a08b1
Signed-off-by: tierno <alfonso.tiernosepulveda@telefonica.com>
diff --git a/osm_lcm/vim_sdn.py b/osm_lcm/vim_sdn.py
index a44aa9b..0a21eaa 100644
--- a/osm_lcm/vim_sdn.py
+++ b/osm_lcm/vim_sdn.py
@@ -1104,7 +1104,7 @@
if k8s_h3c_id:
step = "Removing helm-chart-v3 '{}'".format(k8s_hc_id)
uninstall_sw = deep_get(db_k8scluster, ("_admin", "helm-chart-v3", "created")) or False
- cluster_removed = await self.helm3_k8scluster.reset(cluster_uuid=k8s_hc_id, uninstall_sw=uninstall_sw)
+ cluster_removed = await self.helm3_k8scluster.reset(cluster_uuid=k8s_h3c_id, uninstall_sw=uninstall_sw)
db_k8scluster_update["_admin.helm-chart-v3.id"] = None
db_k8scluster_update["_admin.helm-chart-v3.operationalState"] = "DISABLED"