Merge pull request #5015 from roberthbailey/kubectl-e2e-timeout

Increase the kubectl e2e test timeout to 10 minutes
This commit is contained in:
Jeff Lowdermilk 2015-03-04 09:24:41 -08:00
commit 3891ad1b8f

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
)