From 4d731d92bf03443b252fa365e826be7d73afef12 Mon Sep 17 00:00:00 2001 From: Aaron Crickenberger Date: Wed, 8 Jan 2020 10:12:47 -0800 Subject: [PATCH] Demote Delete Grace Period test to [Flaky] This is currently the top flake against PRs, so I'm tagging it as [Flaky]. Flaky tests can't be conformance tests, so I'm removing it from [Conformance] as well until this is resolved. --- test/conformance/testdata/conformance.txt | 1 - test/e2e/node/pods.go | 2 +- 2 files changed, 1 insertion(+), 2 deletions(-) diff --git a/test/conformance/testdata/conformance.txt b/test/conformance/testdata/conformance.txt index a91cea67962..f08d4450b4e 100644 --- a/test/conformance/testdata/conformance.txt +++ b/test/conformance/testdata/conformance.txt @@ -261,7 +261,6 @@ test/e2e/network/service.go: "should be able to change the type from ClusterIP t test/e2e/network/service.go: "should be able to change the type from NodePort to ExternalName" test/e2e/network/service_latency.go: "should not be very high" test/e2e/node/events.go: "should be sent by kubelets and the scheduler about pods scheduling and running" -test/e2e/node/pods.go: "should be submitted and removed" test/e2e/node/pods.go: "should be set on Pods with matching resource requests and limits for memory and cpu" test/e2e/node/pre_stop.go: "should call prestop when killing a pod" test/e2e/scheduling/predicates.go: "validates resource limits of pods that are allowed to run" diff --git a/test/e2e/node/pods.go b/test/e2e/node/pods.go index f63fb7885c8..432c20a3910 100644 --- a/test/e2e/node/pods.go +++ b/test/e2e/node/pods.go @@ -49,7 +49,7 @@ var _ = SIGDescribe("Pods Extended", func() { Testname: Pods, delete grace period Description: Create a pod, make sure it is running. Using the http client send a ‘delete’ with gracePeriodSeconds=30. Pod SHOULD get deleted within 30 seconds. */ - framework.ConformanceIt("should be submitted and removed", func() { + ginkgo.It("should be submitted and removed [Flaky]", func() { ginkgo.By("creating the pod") name := "pod-submit-remove-" + string(uuid.NewUUID()) value := strconv.Itoa(time.Now().Nanosecond())