diff --git a/test/conformance/testdata/conformance.yaml b/test/conformance/testdata/conformance.yaml index a0dd5f43692..ac7ee783f83 100755 --- a/test/conformance/testdata/conformance.yaml +++ b/test/conformance/testdata/conformance.yaml @@ -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 diff --git a/test/e2e/common/node/podtemplates.go b/test/e2e/common/node/podtemplates.go index ac9d85ffd4a..e85602bc5f8 100644 --- a/test/e2e/common/node/podtemplates.go +++ b/test/e2e/common/node/podtemplates.go @@ -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)