Remove version checks for Job and CronJob task pages (#18337)
* Specify minimum Kubernetes version for Job tasks Ask for v1.8 because CronJob went beta in v1.8 and some of the Job pages reference CronJob. * Drop version check from Job / CronJob task pages. Assume that readers have Kubernetes v1.8 or newer.pull/18614/head
parent
27ec99ffbb
commit
e86f038b11
|
@ -1,5 +1,6 @@
|
|||
---
|
||||
title: Running Automated Tasks with a CronJob
|
||||
min-kubernetes-server-version: v1.8
|
||||
reviewers:
|
||||
- chenopis
|
||||
content_template: templates/task
|
||||
|
@ -24,7 +25,7 @@ For more limitations, see [CronJobs](/docs/concepts/workloads/controllers/cron-j
|
|||
|
||||
{{% capture prerequisites %}}
|
||||
|
||||
* {{< include "task-tutorial-prereqs.md" >}} {{< version-check >}}
|
||||
* {{< include "task-tutorial-prereqs.md" >}}
|
||||
|
||||
{{% /capture %}}
|
||||
|
||||
|
|
|
@ -1,5 +1,6 @@
|
|||
---
|
||||
title: Coarse Parallel Processing Using a Work Queue
|
||||
min-kubernetes-server-version: v1.8
|
||||
content_template: templates/task
|
||||
weight: 30
|
||||
---
|
||||
|
@ -30,7 +31,7 @@ Here is an overview of the steps in this example:
|
|||
Be familiar with the basic,
|
||||
non-parallel, use of [Job](/docs/concepts/jobs/run-to-completion-finite-workloads/).
|
||||
|
||||
{{< include "task-tutorial-prereqs.md" >}} {{< version-check >}}
|
||||
{{< include "task-tutorial-prereqs.md" >}}
|
||||
|
||||
{{% /capture %}}
|
||||
|
||||
|
|
|
@ -1,6 +1,7 @@
|
|||
---
|
||||
title: Fine Parallel Processing Using a Work Queue
|
||||
content_template: templates/task
|
||||
min-kubernetes-server-version: v1.8
|
||||
weight: 40
|
||||
---
|
||||
|
||||
|
@ -29,7 +30,7 @@ Here is an overview of the steps in this example:
|
|||
|
||||
{{% capture prerequisites %}}
|
||||
|
||||
{{< include "task-tutorial-prereqs.md" >}} {{< version-check >}}
|
||||
{{< include "task-tutorial-prereqs.md" >}}
|
||||
|
||||
{{% /capture %}}
|
||||
|
||||
|
|
|
@ -1,6 +1,7 @@
|
|||
---
|
||||
title: Parallel Processing using Expansions
|
||||
content_template: templates/concept
|
||||
min-kubernetes-server-version: v1.8
|
||||
weight: 20
|
||||
---
|
||||
|
||||
|
|
Loading…
Reference in New Issue