Skip to content

Commit f346b0c

Browse files
authored
Setting timeout for waitForPodsReady to 5min (#93)
* setting timeout for waitForPodsReady to 5min * increasing timeout to 10m
1 parent 888de54 commit f346b0c

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

pkg/install/install.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -200,5 +200,5 @@ func waitForCRDsEstablished() error {
200200

201201
// waitForPodsReady waits for all pods in the given namespace to be ready.
202202
func waitForPodsReady(ns string) error {
203-
return runCommand(exec.Command("kubectl", "wait", "pod", "--timeout=-1s", "--for=condition=Ready", "-l", "!job-name", "-n", ns))
203+
return runCommand(exec.Command("kubectl", "wait", "pod", "--timeout=10m", "--for=condition=Ready", "-l", "!job-name", "-n", ns))
204204
}

0 commit comments

Comments
 (0)