diff --git a/test/conformance/testdata/conformance.yaml b/test/conformance/testdata/conformance.yaml index e7d498c7b59..b97996c755c 100755 --- a/test/conformance/testdata/conformance.yaml +++ b/test/conformance/testdata/conformance.yaml @@ -1783,6 +1783,15 @@ same node if the HostIP or Protocol is different. release: v1.16 file: test/e2e/scheduling/predicates.go +- testname: Pod preemption verification + codename: '[sig-scheduling] SchedulerPreemption [Serial] 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.19 + file: test/e2e/scheduling/preemption.go - testname: ConfigMap Volume, text data, binary data codename: '[sig-storage] ConfigMap binary data should be reflected in volume [NodeConformance] [Conformance]' diff --git a/test/e2e/scheduling/preemption.go b/test/e2e/scheduling/preemption.go index 7130ed8a8e1..02d30ad687b 100644 --- a/test/e2e/scheduling/preemption.go +++ b/test/e2e/scheduling/preemption.go @@ -507,7 +507,12 @@ var _ = SIGDescribe("SchedulerPreemption [Serial]", func() { } }) - ginkgo.It("runs ReplicaSets to verify preemption running path", func() { + /* + Release: v1.19 + 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{})