diff --git a/test/conformance/testdata/conformance.yaml b/test/conformance/testdata/conformance.yaml index 795dddf6ef9..38475c1679c 100755 --- a/test/conformance/testdata/conformance.yaml +++ b/test/conformance/testdata/conformance.yaml @@ -763,6 +763,15 @@ pod. Modify the labels of one of the Job's Pods. The Job MUST release the Pod. release: v1.16 file: test/e2e/apps/job.go +- testname: Jobs, apply changes to status + codename: '[sig-apps] Job should apply changes to a job status [Conformance]' + description: Attempt to create a running Job which MUST succeed. Attempt to patch + the Job status to include a new start time which MUST succeed. An annotation for + the job that was patched MUST be found. Attempt to replace the job status with + a new start time which MUST succeed. Attempt to read its status sub-resource which + MUST succeed + release: v1.24 + file: test/e2e/apps/job.go - testname: Ensure Pods of an Indexed Job get a unique index. codename: '[sig-apps] Job should create pods for an Indexed job with completion indexes and specified hostname [Conformance]' diff --git a/test/e2e/apps/job.go b/test/e2e/apps/job.go index 0cd7fe46d6a..7a2010c0432 100644 --- a/test/e2e/apps/job.go +++ b/test/e2e/apps/job.go @@ -440,7 +440,16 @@ var _ = SIGDescribe("Job", func() { framework.ExpectEqual(successes, largeCompletions, "expected %d successful job pods, but got %d", largeCompletions, successes) }) - ginkgo.It("should apply changes to a job status", func() { + /* + Release: v1.24 + Testname: Jobs, apply changes to status + Description: Attempt to create a running Job which MUST succeed. + Attempt to patch the Job status to include a new start time which + MUST succeed. An annotation for the job that was patched MUST be found. + Attempt to replace the job status with a new start time which MUST + succeed. Attempt to read its status sub-resource which MUST succeed + */ + framework.ConformanceIt("should apply changes to a job status", func() { ns := f.Namespace.Name jClient := f.ClientSet.BatchV1().Jobs(ns)