mirror of
https://github.com/k3s-io/kubernetes.git
synced 2025-07-21 10:51:29 +00:00
Merge pull request #103243 from ii/promote-statefulset-status-test
Promote to Conformance StatefulSet Patch, Read and Replace Status test +3
This commit is contained in:
commit
9ca75c1f49
8
test/conformance/testdata/conformance.yaml
vendored
8
test/conformance/testdata/conformance.yaml
vendored
@ -925,6 +925,14 @@
|
|||||||
StorageClass or a dynamic provisioner.
|
StorageClass or a dynamic provisioner.
|
||||||
release: v1.9
|
release: v1.9
|
||||||
file: test/e2e/apps/statefulset.go
|
file: test/e2e/apps/statefulset.go
|
||||||
|
- testname: StatefulSet, status sub-resource
|
||||||
|
codename: '[sig-apps] StatefulSet Basic StatefulSet functionality [StatefulSetBasic]
|
||||||
|
should validate Statefulset Status endpoints [Conformance]'
|
||||||
|
description: When a StatefulSet is created it MUST succeed. Attempt to read, update
|
||||||
|
and patch its status sub-resource; all mutating sub-resource operations MUST be
|
||||||
|
visible to subsequent reads.
|
||||||
|
release: v1.22
|
||||||
|
file: test/e2e/apps/statefulset.go
|
||||||
- testname: CertificateSigningRequest API
|
- testname: CertificateSigningRequest API
|
||||||
codename: '[sig-auth] Certificates API [Privileged:ClusterAdmin] should support
|
codename: '[sig-auth] Certificates API [Privileged:ClusterAdmin] should support
|
||||||
CSR API operations [Conformance]'
|
CSR API operations [Conformance]'
|
||||||
|
@ -962,7 +962,14 @@ var _ = SIGDescribe("StatefulSet", func() {
|
|||||||
framework.ExpectEqual(len(ssList.Items), 0, "filtered list should have no Statefulsets")
|
framework.ExpectEqual(len(ssList.Items), 0, "filtered list should have no Statefulsets")
|
||||||
})
|
})
|
||||||
|
|
||||||
ginkgo.It("should validate Statefulset Status endpoints", func() {
|
/*
|
||||||
|
Release: v1.22
|
||||||
|
Testname: StatefulSet, status sub-resource
|
||||||
|
Description: When a StatefulSet is created it MUST succeed.
|
||||||
|
Attempt to read, update and patch its status sub-resource; all
|
||||||
|
mutating sub-resource operations MUST be visible to subsequent reads.
|
||||||
|
*/
|
||||||
|
framework.ConformanceIt("should validate Statefulset Status endpoints", func() {
|
||||||
ssClient := c.AppsV1().StatefulSets(ns)
|
ssClient := c.AppsV1().StatefulSets(ns)
|
||||||
labelSelector := "e2e=testing"
|
labelSelector := "e2e=testing"
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user