From de053ef79078cc2f086627847df240e99b944cf3 Mon Sep 17 00:00:00 2001 From: Clayton Coleman Date: Mon, 16 Jan 2017 13:20:48 -0500 Subject: [PATCH 1/2] 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() { From 88a1128498c787b297976fb05ec959bff12c20a6 Mon Sep 17 00:00:00 2001 From: Clayton Coleman Date: Mon, 16 Jan 2017 18:52:37 -0500 Subject: [PATCH 2/2] Increase service endpoint test timeout this reduces flakiness in extended suites where long start delays result in this test failing. --- test/e2e/framework/util.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/e2e/framework/util.go b/test/e2e/framework/util.go index 412ed2a0710..694937ffbeb 100644 --- a/test/e2e/framework/util.go +++ b/test/e2e/framework/util.go @@ -122,7 +122,7 @@ const ( slowPodStartTimeout = 15 * time.Minute // How long to wait for a service endpoint to be resolvable. - ServiceStartTimeout = 1 * time.Minute + ServiceStartTimeout = 3 * time.Minute // How often to Poll pods, nodes and claims. Poll = 2 * time.Second