From de053ef79078cc2f086627847df240e99b944cf3 Mon Sep 17 00:00:00 2001 From: Clayton Coleman Date: Mon, 16 Jan 2017 13:20:48 -0500 Subject: [PATCH] Double container probe timeout in some environments, we see a combination of start latency and the corresponding effect on sync pod latency causing status manager to fail to report within the 2 minute window. --- test/e2e/common/container_probe.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/e2e/common/container_probe.go b/test/e2e/common/container_probe.go index cb9b8d33199..ef0fedb95f6 100644 --- a/test/e2e/common/container_probe.go +++ b/test/e2e/common/container_probe.go @@ -37,7 +37,7 @@ const ( probTestContainerName = "test-webserver" probTestInitialDelaySeconds = 15 - defaultObservationTimeout = time.Minute * 2 + defaultObservationTimeout = time.Minute * 4 ) var _ = framework.KubeDescribe("Probing container", func() {