From e19d2a742f8b30699867e07d280da68e0069c439 Mon Sep 17 00:00:00 2001 From: Jack Francis Date: Wed, 4 Oct 2017 13:47:52 -0700 Subject: [PATCH] increase wait time for node readiness to 15 mins (#1537) * increase wait time for node readiness to 15 mins * using cfg.Timeout so timeout is configurable --- test/e2e/runner.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/e2e/runner.go b/test/e2e/runner.go index d7abe23efd..f52c16a2cb 100644 --- a/test/e2e/runner.go +++ b/test/e2e/runner.go @@ -84,7 +84,7 @@ func main() { os.Setenv("KUBECONFIG", cfg.GetKubeConfig()) log.Printf("Kubeconfig:%s\n", cfg.GetKubeConfig()) log.Println("Waiting on nodes to go into ready state...") - ready := node.WaitOnReady(eng.NodeCount(), 10*time.Second, 10*time.Minute) + ready := node.WaitOnReady(eng.NodeCount(), 10*time.Second, cfg.Timeout) if ready == false { teardown() log.Fatalf("Error: Not all nodes in ready state!")