We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a8e72c3 commit 980fb71Copy full SHA for 980fb71
test/e2e/deployimage/plugin_cluster_test.go
@@ -93,7 +93,8 @@ func Run(kbc *utils.TestContext) {
93
94
By("deploying the controller-manager")
95
cmd := exec.Command("make", "deploy", "IMG="+kbc.ImageName)
96
- out, _ := kbc.Run(cmd)
+ out, err := kbc.Run(cmd)
97
+ Expect(err).NotTo(HaveOccurred())
98
Expect(string(out)).NotTo(ContainSubstring("Warning: would violate PodSecurity"))
99
100
By("validating that the controller-manager pod is running as expected")
0 commit comments