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:
Kubernetes Prow Robot 2021-07-01 13:18:04 -07:00 committed by GitHub
commit 3334703eb2
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 15 additions and 1 deletions

View File

@ -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]'

View File

@ -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"