You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: test/e2e/apps/job.go
+4-2Lines changed: 4 additions & 2 deletions
Original file line number
Diff line number
Diff line change
@@ -143,14 +143,15 @@ var _ = SIGDescribe("Job", func() {
143
143
})
144
144
145
145
/*
146
+
Release: v1.32
146
147
Testname: Ensure pod failure policy allows to ignore failure matching on the exit code
147
148
Description: This test is using an indexed job. The pod corresponding to each index
148
149
creates a marker file on the host and runs 'forever' until evicted. Once
149
150
the marker file is created the pod succeeds seeing it on restart. Thus,
150
151
we trigger one failure per index due to eviction, so the Job would be
151
152
marked as failed, if not for the ignore rule matching on exit codes.
152
153
*/
153
-
ginkgo.It("should allow to use a pod failure policy to ignore failure matching on exit code", func(ctx context.Context) {
154
+
framework.ConformanceIt("should allow to use a pod failure policy to ignore failure matching on exit code", func(ctx context.Context) {
154
155
// We set the backoffLimit = numPods-1 so that we can tolerate random
155
156
// failures (like OutOfPods from kubelet). Yet, the Job would fail if the
156
157
// pod failures were not be ignored.
@@ -217,6 +218,7 @@ var _ = SIGDescribe("Job", func() {
217
218
})
218
219
219
220
/*
221
+
Release: v1.32
220
222
Testname: Ensure pod failure policy allows to ignore failure matching on the DisruptionTarget condition
221
223
Description: This test is using an indexed job. The pod corresponding to each index
222
224
creates a marker file on the host and runs 'forever' until evicted. Once
@@ -225,7 +227,7 @@ var _ = SIGDescribe("Job", func() {
225
227
condition is added in the process). The Job would be marked as failed,
226
228
if not for the ignore rule matching on exit codes.
227
229
*/
228
-
ginkgo.It("should allow to use a pod failure policy to ignore failure matching on DisruptionTarget condition", func(ctx context.Context) {
230
+
framework.ConformanceIt("should allow to use a pod failure policy to ignore failure matching on DisruptionTarget condition", func(ctx context.Context) {
229
231
// We set the backoffLimit = numPods-1 so that we can tolerate random
230
232
// failures (like OutOfPods from kubelet). Yet, the Job would fail if the
0 commit comments