From ce2c468677e261cb31a7a6251b2d2195bd5fcaa2 Mon Sep 17 00:00:00 2001 From: ravisantoshgudimetla Date: Thu, 1 Feb 2018 15:18:22 -0500 Subject: [PATCH] Container Liveness probe InitialDelay time increased to accomodate slow machines --- 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 459df0d0cc1..cb9b8d33199 100644 --- a/test/e2e/common/container_probe.go +++ b/test/e2e/common/container_probe.go @@ -263,7 +263,7 @@ var _ = framework.KubeDescribe("Probing container", func() { }, InitialDelaySeconds: 15, TimeoutSeconds: 5, - FailureThreshold: 1, + FailureThreshold: 5, // to accommodate nodes which are slow in bringing up containers. }, }, },