Merge pull request #103241 from ii/promote-statefulset-list-deletecollection

Promote to Conformance StatefulSet List, Patch & DeleteCollection Test +3
This commit is contained in:
Kubernetes Prow Robot 2021-07-01 13:17:52 -07:00 committed by GitHub
commit cd94e840cb
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 17 additions and 1 deletions

View File

@ -889,6 +889,14 @@
scale MUST be at two replicas.
release: v1.16, v1.21
file: test/e2e/apps/statefulset.go
- testname: StatefulSet, list, patch and delete a collection of StatefulSets
codename: '[sig-apps] StatefulSet Basic StatefulSet functionality [StatefulSetBasic]
should list, patch and delete a collection of StatefulSets [Conformance]'
description: When a StatefulSet is created it MUST succeed. It MUST succeed when
listing StatefulSets via a label selector. It MUST succeed when patching a StatefulSet.
It MUST succeed when deleting the StatefulSet via deleteCollection.
release: v1.22
file: test/e2e/apps/statefulset.go
- testname: StatefulSet, Rolling Update with Partition
codename: '[sig-apps] StatefulSet Basic StatefulSet functionality [StatefulSetBasic]
should perform canary updates and phased rolling updates of template modifications

View File

@ -892,7 +892,15 @@ var _ = SIGDescribe("StatefulSet", func() {
framework.ExpectEqual(*(ss.Spec.Replicas), int32(4), "statefulset should have 4 replicas")
})
ginkgo.It("should list, patch and delete a collection of StatefulSets", func() {
/*
Release: v1.22
Testname: StatefulSet, list, patch and delete a collection of StatefulSets
Description: When a StatefulSet is created it MUST succeed. It
MUST succeed when listing StatefulSets via a label selector. It
MUST succeed when patching a StatefulSet. It MUST succeed when
deleting the StatefulSet via deleteCollection.
*/
framework.ConformanceIt("should list, patch and delete a collection of StatefulSets", func() {
ssPatchReplicas := int32(2)
ssPatchImage := imageutils.GetE2EImage(imageutils.Pause)