Promote Statefulset list and deleteCollection e2e test to Conformance

This commit is contained in:
Stephen Heywood 2021-06-28 10:06:27 +12:00
parent 657d93c4cc
commit d3ad1d77f3
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)