Merge pull request #102348 from ii/promote-daemonset-status-test

Promote Read, Patch & Replace DaemonSet Status e2e test to Conformance +3 endpoints
This commit is contained in:
Kubernetes Prow Robot 2021-06-16 09:43:59 -07:00 committed by GitHub
commit 727b4307f0
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 15 additions and 1 deletions

View File

@ -654,6 +654,14 @@
description: A conformant Kubernetes distribution MUST support DaemonSet RollingUpdates.
release: v1.10
file: test/e2e/apps/daemon_set.go
- testname: DaemonSet, status sub-resource
codename: '[sig-apps] Daemon set [Serial] should verify changes to a daemon set
status [Conformance]'
description: When a DaemonSet 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/daemon_set.go
- testname: Deployment, completes the scaling of a Deployment subresource
codename: '[sig-apps] Deployment Deployment should have a working scale subresource
[Conformance]'

View File

@ -849,7 +849,13 @@ var _ = SIGDescribe("Daemon set [Serial]", func() {
framework.ExpectEqual(len(dsList.Items), 0, "filtered list should have no daemonset")
})
ginkgo.It("should verify changes to a daemon set status", func() {
/* Release: v1.22
Testname: DaemonSet, status sub-resource
Description: When a DaemonSet 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 verify changes to a daemon set status", func() {
label := map[string]string{daemonsetNameLabel: dsName}
labelSelector := labels.SelectorFromSet(label).String()