Merge pull request #108431 from ii/promote-replace-podtemplate

Promote replaceCoreV1NamespacedPodTemplate test - +1 endpoint coverage
This commit is contained in:
Kubernetes Prow Robot 2022-03-14 16:24:58 -07:00 committed by GitHub
commit f9be590b25
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 15 additions and 1 deletions

View File

@ -1927,6 +1927,13 @@
when listed by its label selector.
release: v1.19
file: test/e2e/common/node/podtemplates.go
- testname: PodTemplate, replace
codename: '[sig-node] PodTemplates should replace a pod template [Conformance]'
description: Attempt to create a PodTemplate which MUST succeed. Attempt to replace
the PodTemplate to include a new annotation which MUST succeed. The annotation
MUST be found in the new PodTemplate.
release: v1.24
file: test/e2e/common/node/podtemplates.go
- testname: PodTemplate lifecycle
codename: '[sig-node] PodTemplates should run the lifecycle of PodTemplates [Conformance]'
description: Attempt to create a PodTemplate. Patch the created PodTemplate. Fetching

View File

@ -164,7 +164,14 @@ var _ = SIGDescribe("PodTemplates", func() {
})
ginkgo.It("should replace a pod template", func() {
/*
Release: v1.24
Testname: PodTemplate, replace
Description: Attempt to create a PodTemplate which MUST succeed.
Attempt to replace the PodTemplate to include a new annotation
which MUST succeed. The annotation MUST be found in the new PodTemplate.
*/
framework.ConformanceIt("should replace a pod template", func() {
ptClient := f.ClientSet.CoreV1().PodTemplates(f.Namespace.Name)
ptName := "podtemplate-" + utilrand.String(5)