From c58fc8ce4b9720236134b4cdd62083b37035c44c Mon Sep 17 00:00:00 2001 From: Mrunal Patel Date: Mon, 1 Oct 2018 09:26:39 -0700 Subject: [PATCH] Increase the pod start short timeout We have seen flakes related to this timeout. Signed-off-by: Mrunal Patel --- 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 66eb8728019..4a4c18c2abf 100644 --- a/test/e2e/framework/util.go +++ b/test/e2e/framework/util.go @@ -114,7 +114,7 @@ const ( // Same as `PodStartTimeout` to wait for the pod to be started, but shorter. // Use it case by case when we are sure pod start will not be delayed // minutes by slow docker pulls or something else. - PodStartShortTimeout = 1 * time.Minute + PodStartShortTimeout = 2 * time.Minute // How long to wait for a pod to be deleted PodDeleteTimeout = 5 * time.Minute