From 055d2f8f6866164d69804b8c0eda05fcc4d0ae1f Mon Sep 17 00:00:00 2001 From: Yuma Ogami Date: Fri, 1 Mar 2024 01:52:00 +0000 Subject: [PATCH] debug --- e2e/suite_test.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/e2e/suite_test.go b/e2e/suite_test.go index d8978191..f769bfa2 100644 --- a/e2e/suite_test.go +++ b/e2e/suite_test.go @@ -103,9 +103,9 @@ var _ = BeforeSuite(func() { fmt.Printf(string(stdout2)) stdout2, _, err = kubectl("get", "pv", "-oyaml") fmt.Printf(string(stdout2)) - stdout2, _, err = kubectl("get", "pvc", "-oyaml") + stdout2, _, err = kubectl("-n", operatorNamespace, "get", "pvc", "-oyaml") fmt.Printf(string(stdout2)) - stdout2, _, err = kubectl("describe", "pvc") + stdout2, _, err = kubectl("-n", operatorNamespace, "describe", "pvc") fmt.Printf(string(stdout2)) return fmt.Errorf("kubectl get deploy failed. stderr: %s, err: %w", string(stderr), err) }