diff --git a/test/conformance/testdata/conformance.yaml b/test/conformance/testdata/conformance.yaml index b97996c755c..610581d8405 100755 --- a/test/conformance/testdata/conformance.yaml +++ b/test/conformance/testdata/conformance.yaml @@ -1735,6 +1735,14 @@ visible at runtime in the container. release: v1.9 file: test/e2e/common/downward_api.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 + the PodTemplate MUST reflect changes. By fetching all the PodTemplates via a Label + selector it MUST find the PodTemplate by it's static label and updated value. + The PodTemplate must be deleted. + release: v1.19 + file: test/e2e/common/podtemplates.go - testname: LimitRange, resources codename: '[sig-scheduling] LimitRange should create a LimitRange with defaults and ensure pod has those defaults applied. [Conformance]' diff --git a/test/e2e/common/podtemplates.go b/test/e2e/common/podtemplates.go index 420528a49cf..599a33c33f3 100644 --- a/test/e2e/common/podtemplates.go +++ b/test/e2e/common/podtemplates.go @@ -29,10 +29,15 @@ import ( "github.com/onsi/ginkgo" ) -var _ = ginkgo.Describe("[sig-architecture] PodTemplates", func() { +var _ = ginkgo.Describe("[sig-node] PodTemplates", func() { f := framework.NewDefaultFramework("podtemplate") - - ginkgo.It("should run the lifecycle of PodTemplates", func() { + /* + Release : v1.19 + Testname: PodTemplate lifecycle + Description: Attempt to create a PodTemplate. Patch the created PodTemplate. Fetching the PodTemplate MUST reflect changes. + By fetching all the PodTemplates via a Label selector it MUST find the PodTemplate by it's static label and updated value. The PodTemplate must be deleted. + */ + framework.ConformanceIt("should run the lifecycle of PodTemplates", func() { testNamespaceName := f.Namespace.Name podTemplateName := "nginx-pod-template-" + string(uuid.NewUUID())