Merge pull request #83378 from ii/promote-pod-replicaset-verification

Promote pod PreemptionExecutionPath verification - +3 conformance endpoint coverage
This commit is contained in:
Kubernetes Prow Robot 2020-04-06 19:09:43 -07:00 committed by GitHub
commit 667e028f38
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 15 additions and 1 deletions

View File

@ -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]'

View File

@ -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{})