Skip to content

Commit

Permalink
debug
Browse files Browse the repository at this point in the history
  • Loading branch information
cupnes committed Mar 1, 2024
1 parent c7aec46 commit 055d2f8
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions e2e/suite_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -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)
}
Expand Down

0 comments on commit 055d2f8

Please sign in to comment.