Merge pull request #102347 from ii/promote-replicaset-list-deletecollection

Promote Replicaset list and deleteCollection e2e test to Conformance +2 endpoints
This commit is contained in:
Kubernetes Prow Robot
2021-06-15 18:45:59 -07:00
committed by GitHub
2 changed files with 16 additions and 1 deletions

View File

@@ -153,7 +153,14 @@ var _ = SIGDescribe("ReplicaSet", func() {
testRSLifeCycle(f)
})
ginkgo.It("should list and delete a collection of ReplicaSets", func() {
/*
Release: v1.22
Testname: ReplicaSet, list and delete a collection of ReplicaSets
Description: When a ReplicaSet is created it MUST succeed. It
MUST succeed when listing ReplicaSets via a label selector. It
MUST succeed when deleting the ReplicaSet via deleteCollection.
*/
framework.ConformanceIt("should list and delete a collection of ReplicaSets", func() {
listRSDeleteCollection(f)
})