From f5a82f70e5e4cb6b957961166533023d2c79b00e Mon Sep 17 00:00:00 2001 From: Andrew Sy Kim Date: Mon, 16 Nov 2020 09:28:17 -0500 Subject: [PATCH] e2e/node: increase timeouts seconds to 5 for liveness probe restart test Signed-off-by: Andrew Sy Kim --- test/e2e/common/container_probe.go | 2 ++ 1 file changed, 2 insertions(+) diff --git a/test/e2e/common/container_probe.go b/test/e2e/common/container_probe.go index 83a9fd98999..59e0315ad9a 100644 --- a/test/e2e/common/container_probe.go +++ b/test/e2e/common/container_probe.go @@ -123,6 +123,7 @@ var _ = framework.KubeDescribe("Probing container", func() { livenessProbe := &v1.Probe{ Handler: execHandler([]string{"cat", "/tmp/health"}), InitialDelaySeconds: 15, + TimeoutSeconds: 5, // default 1s can be pretty aggressive in CI environments with low resources FailureThreshold: 1, } pod := busyBoxPodSpec(nil, livenessProbe, cmd) @@ -139,6 +140,7 @@ var _ = framework.KubeDescribe("Probing container", func() { livenessProbe := &v1.Probe{ Handler: execHandler([]string{"cat", "/tmp/health"}), InitialDelaySeconds: 15, + TimeoutSeconds: 5, // default 1s can be pretty aggressive in CI environments with low resources FailureThreshold: 1, } pod := busyBoxPodSpec(nil, livenessProbe, cmd)