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.
pull/6/head
Robert Bailey 2015-03-03 21:54:54 -08:00
parent 71e545bf81
commit 8ae17bf677
1 changed files with 1 additions and 1 deletions

View File

@ -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
)