mirror of
https://github.com/k3s-io/kubernetes.git
synced 2025-07-22 19:31:44 +00:00
Promote Statefulset list and deleteCollection e2e test to Conformance
This commit is contained in:
parent
657d93c4cc
commit
d3ad1d77f3
8
test/conformance/testdata/conformance.yaml
vendored
8
test/conformance/testdata/conformance.yaml
vendored
@ -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
|
||||
|
@ -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)
|
||||
|
Loading…
Reference in New Issue
Block a user