diff --git a/test/e2e/kubectl.go b/test/e2e/kubectl.go index edf71b168d..a3e7c8051b 100644 --- a/test/e2e/kubectl.go +++ b/test/e2e/kubectl.go @@ -166,7 +166,7 @@ var _ = framework.KubeDescribe("Kubectl client", func() { // test files. // Print debug info if atLeast Pods are not found before the timeout waitForOrFailWithDebug := func(atLeast int) { - pods, err := clusterState().WaitFor(atLeast, 90*time.Second) + pods, err := clusterState().WaitFor(atLeast, framework.PodStartTimeout) if err != nil || len(pods) < atLeast { // TODO: Generalize integrating debug info into these tests so we always get debug info when we need it framework.DumpAllNamespaceInfo(c, ns)