File tree Expand file tree Collapse file tree 1 file changed +8
-2
lines changed
content/en/docs/concepts/workloads/controllers Expand file tree Collapse file tree 1 file changed +8
-2
lines changed Original file line number Diff line number Diff line change @@ -290,8 +290,14 @@ Jobs with _fixed completion count_ - that is, jobs that have non null
290
290
The Job is considered complete when there is one successfully completed Pod
291
291
for each index. For more information about how to use this mode, see
292
292
[ Indexed Job for Parallel Processing with Static Work Assignment] ( /docs/tasks/job/indexed-parallel-processing-static/ ) .
293
- Note that, although rare, more than one Pod could be started for the same
294
- index, but only one of them will count towards the completion count.
293
+
294
+ {{< note >}}
295
+ Although rare, more than one Pod could be started for the same index (due to various reasons such as node failures,
296
+ kubelet restarts, or Pod evictions), but only one of them will count towards the completion count.
297
+ In this case, only the first Pod that completes successfully will count towards the completion count and
298
+ update the status of the Job. The other Pods that are running or completed for the same index will be
299
+ deleted by the Job controller once they are detected.
300
+ {{< /note >}}
295
301
296
302
297
303
## Handling Pod and container failures
You can’t perform that action at this time.
0 commit comments