diff options
author | Cédric Ollivier <cedric.ollivier@orange.com> | 2024-09-29 14:03:17 +0200 |
---|---|---|
committer | Cédric Ollivier <cedric.ollivier@orange.com> | 2024-09-29 14:05:05 +0200 |
commit | 3c07bffd8677fa15af49ec255d530beb80c47326 (patch) | |
tree | 948535d6f7c27d15ab3bcc07a5ea7f20ad6c8867 | |
parent | c8394e99a2e6564e137dab1961d26efed9d5ac87 (diff) |
CNF TestSuite now uses cnf-default namespace
Change-Id: Ia595665cc8f84a2aabd141ead7bb343758cb3d18
Signed-off-by: Cédric Ollivier <cedric.ollivier@orange.com>
(cherry picked from commit 93c57b463c51116b99b3e59312cf8cf0c9bd6894)
-rw-r--r-- | functest_kubernetes/cnf_conformance/conformance.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/functest_kubernetes/cnf_conformance/conformance.py b/functest_kubernetes/cnf_conformance/conformance.py index 41ce05c8..d1e4bcf1 100644 --- a/functest_kubernetes/cnf_conformance/conformance.py +++ b/functest_kubernetes/cnf_conformance/conformance.py @@ -64,7 +64,7 @@ class CNFConformance(testcase.TestCase): if os.path.exists(os.path.join(self.src_dir, "results")): shutil.rmtree(os.path.join(self.src_dir, "results")) api_response = self.corev1.list_namespace() - for namespace in ["cnf-testsuite", "default", "litmus"]: + for namespace in ["cnf-testsuite", "cnf-default", "litmus"]: for item in api_response.items: if item.metadata.name == namespace: self.corev1.patch_namespace( @@ -161,7 +161,7 @@ class CNFConformance(testcase.TestCase): output = subprocess.check_output(cmd, stderr=subprocess.STDOUT) self.__logger.info("%s\n%s", " ".join(cmd), output.decode("utf-8")) try: - for namespace in ["cnf-testsuite", "litmus"]: + for namespace in ["cnf-testsuite", "cnf-default", "litmus"]: self.corev1.delete_namespace(namespace) self.__logger.debug("delete_namespace: %s", namespace) except client.rest.ApiException: |