mirror of
https://github.com/k3s-io/kubernetes.git
synced 2025-07-22 11:21:47 +00:00
Merge pull request #102346 from ii/promote-daemonset-list-deletecollection
Promote Daemonset list and deleteCollection e2e test to Conformance +2 Endpoints
This commit is contained in:
commit
d5e37cf9b6
8
test/conformance/testdata/conformance.yaml
vendored
8
test/conformance/testdata/conformance.yaml
vendored
@ -613,6 +613,14 @@
|
|||||||
and deletecollection. CronJob/status MUST support get, update and patch.'
|
and deletecollection. CronJob/status MUST support get, update and patch.'
|
||||||
release: v1.21
|
release: v1.21
|
||||||
file: test/e2e/apps/cronjob.go
|
file: test/e2e/apps/cronjob.go
|
||||||
|
- testname: DaemonSet, list and delete a collection of DaemonSets
|
||||||
|
codename: '[sig-apps] Daemon set [Serial] should list and delete a collection of
|
||||||
|
DaemonSets [Conformance]'
|
||||||
|
description: When a DaemonSet is created it MUST succeed. It MUST succeed when listing
|
||||||
|
DaemonSets via a label selector. It MUST succeed when deleting the DaemonSet via
|
||||||
|
deleteCollection.
|
||||||
|
release: v1.22
|
||||||
|
file: test/e2e/apps/daemon_set.go
|
||||||
- testname: DaemonSet-FailedPodCreation
|
- testname: DaemonSet-FailedPodCreation
|
||||||
codename: '[sig-apps] Daemon set [Serial] should retry creating failed daemon pods
|
codename: '[sig-apps] Daemon set [Serial] should retry creating failed daemon pods
|
||||||
[Conformance]'
|
[Conformance]'
|
||||||
|
@ -809,7 +809,14 @@ var _ = SIGDescribe("Daemon set [Serial]", func() {
|
|||||||
checkDaemonSetPodsLabels(listDaemonPods(c, ns, label), hash)
|
checkDaemonSetPodsLabels(listDaemonPods(c, ns, label), hash)
|
||||||
})
|
})
|
||||||
|
|
||||||
ginkgo.It("should list and delete a collection of DaemonSets", func() {
|
/*
|
||||||
|
Release: v1.22
|
||||||
|
Testname: DaemonSet, list and delete a collection of DaemonSets
|
||||||
|
Description: When a DaemonSet is created it MUST succeed. It
|
||||||
|
MUST succeed when listing DaemonSets via a label selector. It
|
||||||
|
MUST succeed when deleting the DaemonSet via deleteCollection.
|
||||||
|
*/
|
||||||
|
framework.ConformanceIt("should list and delete a collection of DaemonSets", 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