Merge pull request #111011 from ii/promote-patch-pod-status-test

Promote patchCoreV1NamespacedPodStatus test - +1 endpoint
This commit is contained in:
Kubernetes Prow Robot 2022-07-08 09:07:52 -07:00 committed by GitHub
commit 9dc13f4f57
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 16 additions and 1 deletions

View File

@ -2021,6 +2021,13 @@
IP address.
release: v1.9
file: test/e2e/common/node/pods.go
- testname: Pods, patching status
codename: '[sig-node] Pods should patch a pod status [Conformance]'
description: A pod is created which MUST succeed and be found running. The pod status
when patched MUST succeed. Given the patching of the pod status, the fields MUST
equal the new values.
release: v1.25
file: test/e2e/common/node/pods.go
- testname: Pods, completes the lifecycle of a Pod and the PodStatus
codename: '[sig-node] Pods should run through the lifecycle of Pods and PodStatus
[Conformance]'

View File

@ -1071,7 +1071,15 @@ var _ = SIGDescribe("Pods", func() {
}
})
ginkgo.It("should patch a pod status", func() {
/*
Release: v1.25
Testname: Pods, patching status
Description: A pod is created which MUST succeed
and be found running. The pod status when patched
MUST succeed. Given the patching of the pod status,
the fields MUST equal the new values.
*/
framework.ConformanceIt("should patch a pod status", func() {
ns := f.Namespace.Name
podClient := f.ClientSet.CoreV1().Pods(ns)
podName := "pod-" + utilrand.String(5)