From 88a1128498c787b297976fb05ec959bff12c20a6 Mon Sep 17 00:00:00 2001 From: Clayton Coleman Date: Mon, 16 Jan 2017 18:52:37 -0500 Subject: [PATCH] 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 412ed2a071..694937ffbe 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