From 8ae17bf677a30a1e676aa3f286ec9cd9f015392e Mon Sep 17 00:00:00 2001 From: Robert Bailey Date: Tue, 3 Mar 2015 21:54:54 -0800 Subject: [PATCH] Increase the timeout to 10 minutes to give docker plenty of time to pull the image. We've seen increasing pull times lately causing the e2e tests to flake. Fixes #4996. --- test/e2e/kubectl.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/e2e/kubectl.go b/test/e2e/kubectl.go index ad61b197ca6..948f5f7e54a 100644 --- a/test/e2e/kubectl.go +++ b/test/e2e/kubectl.go @@ -36,7 +36,7 @@ const ( kittenImage = "kubernetes/update-demo:kitten" updateDemoSelector = "name=update-demo" updateDemoContainer = "update-demo" - validateTimeout = 60 * time.Second + validateTimeout = 10 * time.Minute // TODO: Make this 30 seconds once #4566 is resolved. kubectlProxyPort = 8011 )