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: content/en/docs/concepts/workloads/controllers/job.md
+2-1Lines changed: 2 additions & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -255,7 +255,8 @@ from failed Jobs is not lost inadvertently.
255
255
256
256
## Job termination and cleanup
257
257
258
-
When a Job completes, no more Pods are created, but the Pods are not deleted either. Keeping them around
258
+
When a Job completes, no more Pods are created, but the Pods are [usually](#pod-backoff-failure-policy) not deleted either.
259
+
Keeping them around
259
260
allows you to still view the logs of completed pods to check for errors, warnings, or other diagnostic output.
260
261
The job object also remains after it is completed so that you can view its status. It is up to the user to delete
261
262
old jobs after noting their status. Delete the job with `kubectl` (e.g. `kubectl delete jobs/pi` or `kubectl delete -f ./job.yaml`). When you delete the job using `kubectl`, all the pods it created are deleted too.
0 commit comments