File tree Expand file tree Collapse file tree 1 file changed +5
-2
lines changed
content/en/docs/concepts/workloads/controllers Expand file tree Collapse file tree 1 file changed +5
-2
lines changed Original file line number Diff line number Diff line change @@ -380,7 +380,7 @@ If either of the calculations reaches the `.spec.backoffLimit`, the Job is
380380considered failed.
381381
382382{{< note >}}
383- If your job has ` restartPolicy = "OnFailure" ` , keep in mind that your Pod running the Job
383+ If your Job has ` restartPolicy = "OnFailure" ` , keep in mind that your Pod running the job
384384will be terminated once the job backoff limit has been reached. This can make debugging
385385the Job's executable more difficult. We suggest setting
386386` restartPolicy = "Never" ` when debugging the Job or using a logging system to ensure output
@@ -1177,7 +1177,10 @@ manages Pods that are expected to terminate (e.g. batch tasks).
11771177
11781178As discussed in [Pod Lifecycle](/docs/concepts/workloads/pods/pod-lifecycle/), `Job` is *only* appropriate
11791179for pods with `RestartPolicy` equal to `OnFailure` or `Never`.
1180- (Note : If `RestartPolicy` is not set, the default value is `Always`.)
1180+
1181+ {{< note >}}
1182+ If `RestartPolicy` is not set, the default value is `Always`.
1183+ {{< /note >}}
11811184
11821185# ## Single Job starts controller Pod
11831186
You can’t perform that action at this time.
0 commit comments