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.
This commit is contained in:
Aaron Crickenberger 2020-01-08 10:12:47 -08:00
parent b34c96b62c
commit 4d731d92bf
2 changed files with 1 additions and 2 deletions

View File

@ -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"

View File

@ -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())