From 0d96eeea6369fab1007d04662816e0a4748b7b97 Mon Sep 17 00:00:00 2001 From: gmarek Date: Thu, 23 Jun 2016 14:44:30 +0200 Subject: [PATCH] Increase PodReadyBeforeTimeout by 50% --- test/e2e/framework/util.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/e2e/framework/util.go b/test/e2e/framework/util.go index 3228745e283..5d141c7d67f 100644 --- a/test/e2e/framework/util.go +++ b/test/e2e/framework/util.go @@ -123,7 +123,7 @@ const ( NodeReadyInitialTimeout = 20 * time.Second // How long pods have to be "ready" when a test begins. - PodReadyBeforeTimeout = 2 * time.Minute + PodReadyBeforeTimeout = 5 * time.Minute // How long pods have to become scheduled onto nodes podScheduledBeforeTimeout = PodListTimeout + (20 * time.Second)