Skip to content

Commit

Permalink
debug
Browse files Browse the repository at this point in the history
  • Loading branch information
cupnes committed Feb 29, 2024
1 parent be7b9ec commit 65eb8a3
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion e2e/suite_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -101,7 +101,11 @@ var _ = BeforeSuite(func() {
fmt.Printf(string(stdout2))
stdout2, _, err = kubectl("-n", operatorNamespace, "logs", "-p", "-lapp=rook-ceph-osd-prepare")
fmt.Printf(string(stdout2))
stdout2, _, err = kubectl("get", "pv")
stdout2, _, err = kubectl("get", "pv", "-oyaml")
fmt.Printf(string(stdout2))
stdout2, _, err = kubectl("get", "pvc", "-oyaml")
fmt.Printf(string(stdout2))
stdout2, _, err = kubectl("get", "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 65eb8a3

Please sign in to comment.