Reference CronJob from Job (#12602)

CronJob is now stable. Signpost users to the relevant documentation.
This commit is contained in:
Tim Bannister 2019-02-15 06:16:50 +00:00 committed by Kubernetes Prow Robot
parent 3e5cb3d78a
commit fcea562907
1 changed files with 2 additions and 2 deletions

View File

@ -448,8 +448,8 @@ driver, and then cleans up.
An advantage of this approach is that the overall process gets the completion guarantee of a Job
object, but complete control over what pods are created and how work is assigned to them.
## Cron Jobs
## Cron Jobs {#cron-jobs}
Support for creating Jobs at specified times/dates (i.e. cron) is available in Kubernetes [1.4](https://github.com/kubernetes/kubernetes/pull/11980). More information is available in the [cron job documents](/docs/concepts/workloads/controllers/cron-jobs/)
You can use a [`CronJob`](/docs/concepts/workloads/controllers/cron-jobs/) to create a Job that will run at specified times/dates, similar to the Unix tool `cron`.
{{% /capture %}}