From: Gabriel Cuba Date: Tue, 5 Jul 2022 20:07:33 +0000 (-0500) Subject: Fix bug 2099: Modify helm init command so that all parameters are at the end X-Git-Tag: v10.1.2^0 X-Git-Url: https://osm.etsi.org/gitweb/?a=commitdiff_plain;h=refs%2Fchanges%2F03%2F12303%2F2;p=osm%2FN2VC.git Fix bug 2099: Modify helm init command so that all parameters are at the end Change-Id: I9152e34461dbe4528b2a01f5492f4efa6a285b2b Signed-off-by: Gabriel Cuba --- diff --git a/n2vc/k8s_helm_conn.py b/n2vc/k8s_helm_conn.py index f0cbb46..b20ee87 100644 --- a/n2vc/k8s_helm_conn.py +++ b/n2vc/k8s_helm_conn.py @@ -302,8 +302,8 @@ class K8sHelmConnector(K8sHelmBaseConnector): ) command = ( - "{} --kubeconfig={} --tiller-namespace={} --home={} --service-account {} " - " {} init" + "{} init --kubeconfig={} --tiller-namespace={} --home={} --service-account {} " + " {}" ).format( self._helm_command, paths["kube_config"], @@ -326,8 +326,8 @@ class K8sHelmConnector(K8sHelmBaseConnector): ): self.log.info("Initializing helm in client: {}".format(cluster_id)) command = ( - "{} --kubeconfig={} --tiller-namespace={} " - "--home={} init --client-only {} " + "{} init --kubeconfig={} --tiller-namespace={} " + "--home={} --client-only {} " ).format( self._helm_command, paths["kube_config"],