From d367806825bfff36b5c59c9014d1c2e9d8d5b3f5 Mon Sep 17 00:00:00 2001 From: Daniel Weibel Date: Wed, 17 Nov 2021 15:42:06 +0400 Subject: [PATCH] Fix wording in Jobs documentation --- content/en/docs/concepts/workloads/controllers/job.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/content/en/docs/concepts/workloads/controllers/job.md b/content/en/docs/concepts/workloads/controllers/job.md index 54a4104c5e..19f8248050 100644 --- a/content/en/docs/concepts/workloads/controllers/job.md +++ b/content/en/docs/concepts/workloads/controllers/job.md @@ -250,7 +250,7 @@ back-off count is reset when a Job's Pod is deleted or successful without any other Pods for the Job failing around that time. {{< note >}} -If your job has `restartPolicy = "OnFailure"`, keep in mind that your container running the Job +If your job has `restartPolicy = "OnFailure"`, keep in mind that your Pod running the Job will be terminated once the job backoff limit has been reached. This can make debugging the Job's executable more difficult. We suggest setting `restartPolicy = "Never"` when debugging the Job or using a logging system to ensure output from failed Jobs is not lost inadvertently.