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/suites/base/scheduling_test.go
+5Lines changed: 5 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -262,6 +262,11 @@ var _ = ginkgo.Describe("propagation with label and group constraints testing",
262
262
jobNamespace=testNamespace
263
263
jobName=policyName
264
264
job=helper.NewJob(jobNamespace, jobName)
265
+
// For fixed completion count Jobs, the actual number of pods running in parallel will not exceed the number of remaining completions.
266
+
// Higher values of .spec.parallelism are effectively ignored.
267
+
// Since .spec.parallelism will be updated to updateParallelism in the subsequent testing, .spec.completions is set to updateParallelism here to make the update of .spec.parallelism take effect.
268
+
// More info: https://kubernetes.io/docs/concepts/workloads/controllers/job/
0 commit comments