Make sync the routines to create and delete generic objects in kubectl.py
[osm/N2VC.git] / n2vc / tests / unit / test_k8s_helm3_conn.py
index bddfddd..630962e 100644 (file)
@@ -217,7 +217,7 @@ class TestK8sHelm3Conn(asynctest.TestCase):
         command = (
             "env KUBECONFIG=./tmp/helm3_cluster_id/.kube/config /usr/bin/helm3 "
             "install stable-openldap-0005399828 --atomic --output yaml   "
-            "--timeout 300s --namespace testk8s stable/openldap --version 1.2.2"
+            "--timeout 300s --namespace testk8s   stable/openldap --version 1.2.2"
         )
         self.helm_conn._local_async_exec.assert_called_with(
             command=command, env=self.env, raise_exception_on_error=False
@@ -297,7 +297,7 @@ class TestK8sHelm3Conn(asynctest.TestCase):
         command = (
             "env KUBECONFIG=./tmp/helm3_cluster_id/.kube/config "
             "/usr/bin/helm3 upgrade stable-openldap-0005399828 stable/openldap "
-            "--namespace testk8s --atomic --force --output yaml  --timeout 300s "
+            "--namespace testk8s --atomic --force --output yaml  --timeout 300s   "
             "--reuse-values --version 1.2.3"
         )
         self.helm_conn._local_async_exec.assert_called_with(
@@ -329,7 +329,7 @@ class TestK8sHelm3Conn(asynctest.TestCase):
         command = (
             "env KUBECONFIG=./tmp/helm3_cluster_id/.kube/config "
             "/usr/bin/helm3 upgrade stable-openldap-0005399828 stable/openldap "
-            "--namespace testk8s --atomic --output yaml  --timeout 300s "
+            "--namespace testk8s --atomic --output yaml  --timeout 300s   "
             "--reuse-values --version 1.2.3"
         )
         self.helm_conn._local_async_exec.assert_called_with(
@@ -380,7 +380,7 @@ class TestK8sHelm3Conn(asynctest.TestCase):
         command = (
             "env KUBECONFIG=./tmp/helm3_cluster_id/.kube/config "
             "/usr/bin/helm3 upgrade stable-openldap-0005399828 stable/openldap "
-            "--namespace default --atomic --output yaml  --timeout 300s "
+            "--namespace default --atomic --output yaml  --timeout 300s   "
             "--reuse-values --version 1.2.3"
         )
         self.helm_conn._local_async_exec.assert_called_with(
@@ -437,7 +437,7 @@ class TestK8sHelm3Conn(asynctest.TestCase):
         command = (
             "env KUBECONFIG=./tmp/helm3_cluster_id/.kube/config "
             "/usr/bin/helm3 upgrade stable-openldap-0005399828 stable/openldap "
-            "--namespace testk8s --atomic --output yaml --set replicaCount=2 --timeout 1800s "
+            "--namespace testk8s --atomic --output yaml --set replicaCount=2 --timeout 1800s   "
             "--reuse-values --version 1.2.3"
         )
         self.helm_conn._local_async_exec.assert_called_with(
@@ -456,7 +456,7 @@ class TestK8sHelm3Conn(asynctest.TestCase):
         command = (
             "env KUBECONFIG=./tmp/helm3_cluster_id/.kube/config "
             "/usr/bin/helm3 upgrade stable-openldap-0005399828 stable/openldap "
-            "--namespace testk8s --atomic --output yaml --set dummy-app.replicas=3 --timeout 1800s "
+            "--namespace testk8s --atomic --output yaml --set dummy-app.replicas=3 --timeout 1800s   "
             "--reuse-values --version 1.2.3"
         )
         self.helm_conn._local_async_exec.assert_called_with(