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:
Kubernetes Prow Robot 2021-07-01 14:28:02 -07:00 committed by GitHub
commit 9ca75c1f49
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 16 additions and 1 deletions

View File

@ -925,6 +925,14 @@
StorageClass or a dynamic provisioner.
release: v1.9
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
codename: '[sig-auth] Certificates API [Privileged:ClusterAdmin] should support
CSR API operations [Conformance]'

View File

@ -962,7 +962,14 @@ var _ = SIGDescribe("StatefulSet", func() {
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)
labelSelector := "e2e=testing"