From cc95dc586ea8247852872ab2faa56a975bcb65f9 Mon Sep 17 00:00:00 2001 From: Clayton Coleman Date: Fri, 21 Aug 2015 12:54:36 -0400 Subject: [PATCH] Lengthen e2e kubectl timeout 30s on guestbook-go being pulled from the docker hub is tight - occasionally lag in the DockerHub can cause kubectl expose it should create services for rc to flake. --- 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 9083bd8d33c..48d96c8bdd0 100644 --- a/test/e2e/kubectl.go +++ b/test/e2e/kubectl.go @@ -332,7 +332,7 @@ var _ = Describe("Kubectl client", func() { nsFlag := fmt.Sprintf("--namespace=%v", ns) redisPort := 6379 - serviceTimeout := 30 * time.Second + serviceTimeout := 60 * time.Second By("creating Redis RC") runKubectl("create", "-f", controllerJson, nsFlag)