mirror of
https://github.com/k3s-io/kubernetes.git
synced 2025-07-26 05:03:09 +00:00
Promote DaemonSet Status e2e test to Conformance
This commit is contained in:
parent
91200bac44
commit
5ca47deb0a
8
test/conformance/testdata/conformance.yaml
vendored
8
test/conformance/testdata/conformance.yaml
vendored
@ -646,6 +646,14 @@
|
|||||||
description: A conformant Kubernetes distribution MUST support DaemonSet RollingUpdates.
|
description: A conformant Kubernetes distribution MUST support DaemonSet RollingUpdates.
|
||||||
release: v1.10
|
release: v1.10
|
||||||
file: test/e2e/apps/daemon_set.go
|
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
|
- testname: Deployment, completes the scaling of a Deployment subresource
|
||||||
codename: '[sig-apps] Deployment Deployment should have a working scale subresource
|
codename: '[sig-apps] Deployment Deployment should have a working scale subresource
|
||||||
[Conformance]'
|
[Conformance]'
|
||||||
|
@ -842,7 +842,13 @@ var _ = SIGDescribe("Daemon set [Serial]", func() {
|
|||||||
framework.ExpectEqual(len(dsList.Items), 0, "filtered list should have no daemonset")
|
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}
|
label := map[string]string{daemonsetNameLabel: dsName}
|
||||||
labelSelector := labels.SelectorFromSet(label).String()
|
labelSelector := labels.SelectorFromSet(label).String()
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user