From aa8cd31420819a657e2bdde6dd562409c1a11961 Mon Sep 17 00:00:00 2001 From: Andrew Sy Kim Date: Wed, 18 Nov 2020 16:59:36 -0500 Subject: [PATCH] e2e/node: add exec probe timeout tests to NodeConformance Signed-off-by: Andrew Sy Kim --- test/e2e/common/container_probe.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/test/e2e/common/container_probe.go b/test/e2e/common/container_probe.go index 59e0315ad9a..aa790c62450 100644 --- a/test/e2e/common/container_probe.go +++ b/test/e2e/common/container_probe.go @@ -213,7 +213,7 @@ var _ = framework.KubeDescribe("Probing container", func() { Testname: Pod liveness probe, docker exec, restart Description: A Pod is created with liveness probe with a Exec action on the Pod. If the liveness probe call does not return within the timeout specified, liveness probe MUST restart the Pod. */ - ginkgo.It("should be restarted with a docker exec liveness probe with timeout ", func() { + ginkgo.It("should be restarted with an exec liveness probe with timeout [NodeConformance]", func() { cmd := []string{"/bin/sh", "-c", "sleep 600"} livenessProbe := &v1.Probe{ Handler: execHandler([]string{"/bin/sh", "-c", "sleep 10"}), @@ -230,7 +230,7 @@ var _ = framework.KubeDescribe("Probing container", func() { Testname: Pod readiness probe, docker exec, not ready Description: A Pod is created with readiness probe with a Exec action on the Pod. If the readiness probe call does not return within the timeout specified, readiness probe MUST not be Ready. */ - ginkgo.It("should not be ready with a docker exec readiness probe timeout ", func() { + ginkgo.It("should not be ready with an exec readiness probe timeout [NodeConformance]", func() { cmd := []string{"/bin/sh", "-c", "sleep 600"} readinessProbe := &v1.Probe{ Handler: execHandler([]string{"/bin/sh", "-c", "sleep 10"}),