mirror of
https://github.com/k3s-io/kubernetes.git
synced 2025-07-27 21:47:07 +00:00
Promote Deployment Status e2e test to Conformance
This commit is contained in:
parent
657d93c4cc
commit
405e9a5172
7
test/conformance/testdata/conformance.yaml
vendored
7
test/conformance/testdata/conformance.yaml
vendored
@ -714,6 +714,13 @@
|
|||||||
MUST succeed. It MUST succeed when deleting the Deployment.
|
MUST succeed. It MUST succeed when deleting the Deployment.
|
||||||
release: v1.20
|
release: v1.20
|
||||||
file: test/e2e/apps/deployment.go
|
file: test/e2e/apps/deployment.go
|
||||||
|
- testname: Deployment, status sub-resource
|
||||||
|
codename: '[sig-apps] Deployment should validate Deployment Status endpoints [Conformance]'
|
||||||
|
description: When a Deployment 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/deployment.go
|
||||||
- testname: 'PodDisruptionBudget: list and delete collection'
|
- testname: 'PodDisruptionBudget: list and delete collection'
|
||||||
codename: '[sig-apps] DisruptionController Listing PodDisruptionBudgets for all
|
codename: '[sig-apps] DisruptionController Listing PodDisruptionBudgets for all
|
||||||
namespaces should list and delete a collection of PodDisruptionBudgets [Conformance]'
|
namespaces should list and delete a collection of PodDisruptionBudgets [Conformance]'
|
||||||
|
@ -485,7 +485,14 @@ var _ = SIGDescribe("Deployment", func() {
|
|||||||
framework.ExpectNoError(err, "failed to see %v event", watch.Deleted)
|
framework.ExpectNoError(err, "failed to see %v event", watch.Deleted)
|
||||||
})
|
})
|
||||||
|
|
||||||
ginkgo.It("should validate Deployment Status endpoints", func() {
|
/*
|
||||||
|
Release: v1.22
|
||||||
|
Testname: Deployment, status sub-resource
|
||||||
|
Description: When a Deployment 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 Deployment Status endpoints", func() {
|
||||||
dClient := c.AppsV1().Deployments(ns)
|
dClient := c.AppsV1().Deployments(ns)
|
||||||
dName := "test-deployment-" + utilrand.String(5)
|
dName := "test-deployment-" + utilrand.String(5)
|
||||||
labelSelector := "e2e=testing"
|
labelSelector := "e2e=testing"
|
||||||
|
Loading…
Reference in New Issue
Block a user