Skip to content

Commit a91eb2d

Browse files
committed
fix typo in workloads/controllers/job.md
1 parent 78a5fa1 commit a91eb2d

File tree

1 file changed

+5
-2
lines changed
  • content/en/docs/concepts/workloads/controllers

1 file changed

+5
-2
lines changed

content/en/docs/concepts/workloads/controllers/job.md

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -380,7 +380,7 @@ If either of the calculations reaches the `.spec.backoffLimit`, the Job is
380380
considered 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
384384
will be terminated once the job backoff limit has been reached. This can make debugging
385385
the 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

11781178
As discussed in [Pod Lifecycle](/docs/concepts/workloads/pods/pod-lifecycle/), `Job` is *only* appropriate
11791179
for 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

0 commit comments

Comments
 (0)