File tree Expand file tree Collapse file tree 1 file changed +7
-2
lines changed
content/en/docs/concepts/workloads/controllers Expand file tree Collapse file tree 1 file changed +7
-2
lines changed Original file line number Diff line number Diff line change @@ -290,8 +290,13 @@ 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). In this case, only the first Pod that completes successfully will
297
+ count towards the completion count and update the status of the Job. The other Pods that are running
298
+ or completed for the same index will be deleted by the Job controller once they are detected.
299
+ {{< /note >}}
295
300
296
301
297
302
## Handling Pod and container failures
You can’t perform that action at this time.
0 commit comments