diff --git a/test/conformance/testdata/conformance.yaml b/test/conformance/testdata/conformance.yaml index d69a8d3c366..b8f12dc36f5 100755 --- a/test/conformance/testdata/conformance.yaml +++ b/test/conformance/testdata/conformance.yaml @@ -1708,6 +1708,15 @@ be evicted if the taint is removed before toleration time ends. release: v1.16 file: test/e2e/scheduling/taints.go +- testname: Pod preemption verification + codename: '[sig-scheduling] PreemptionExecutionPath runs ReplicaSets to verify preemption + running path [Conformance]' + description: Four levels of Pods in ReplicaSets with different levels of Priority, + restricted by given CPU limits MUST launch. Priority 1 - 3 Pods MUST spawn first + followed by Priority 4 Pod. The ReplicaSets with Replicas MUST contain the expected + number of Replicas. + release: v1.17 + file: test/e2e/scheduling/preemption.go - testname: Scheduler, resource limits codename: '[sig-scheduling] SchedulerPredicates [Serial] validates resource limits of pods that are allowed to run [Conformance]' diff --git a/test/e2e/scheduling/preemption.go b/test/e2e/scheduling/preemption.go index ba898f625b3..95175abb9b8 100644 --- a/test/e2e/scheduling/preemption.go +++ b/test/e2e/scheduling/preemption.go @@ -499,7 +499,12 @@ var _ = SIGDescribe("SchedulerPreemption [Serial]", func() { } }) - ginkgo.It("runs ReplicaSets to verify preemption running path", func() { + /* + Release: v1.17 + Testname: Pod preemption verification + Description: Four levels of Pods in ReplicaSets with different levels of Priority, restricted by given CPU limits MUST launch. Priority 1 - 3 Pods MUST spawn first followed by Priority 4 Pod. The ReplicaSets with Replicas MUST contain the expected number of Replicas. + */ + framework.ConformanceIt("runs ReplicaSets to verify preemption running path", func() { podNamesSeen := []int32{0, 0, 0} stopCh := make(chan struct{})