mirror of
https://github.com/k3s-io/kubernetes.git
synced 2025-07-23 11:50:44 +00:00
Merge pull request #103242 from ii/promote-deployment-status-test
Promote to Conformance Patch, Read and Replace DeploymentStatus test +1
This commit is contained in:
commit
3334703eb2
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.
|
||||
release: v1.20
|
||||
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'
|
||||
codename: '[sig-apps] DisruptionController Listing PodDisruptionBudgets for all
|
||||
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)
|
||||
})
|
||||
|
||||
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)
|
||||
dName := "test-deployment-" + utilrand.String(5)
|
||||
labelSelector := "e2e=testing"
|
||||
|
Loading…
Reference in New Issue
Block a user