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.
This commit is contained in:
Clayton Coleman 2015-08-21 12:54:36 -04:00
parent 65f4ebd927
commit cc95dc586e

View File

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