2016-08-26 23:23:16 +00:00
---
assignees:
- erictune
- soltysh
- janetkuo
2016-12-15 20:16:54 +00:00
title: Cron Jobs
2016-08-26 23:23:16 +00:00
---
* TOC
{:toc}
2016-12-16 23:51:48 +00:00
## What is a cron job?
2016-08-26 23:23:16 +00:00
2016-11-09 10:32:57 +00:00
A _Cron Job_ manages time based [Jobs ](/docs/user-guide/jobs/ ), namely:
2016-08-26 23:23:16 +00:00
* Once at a specified point in time
* Repeatedly at a specified point in time
2016-11-09 10:32:57 +00:00
One CronJob object is like one line of a _crontab_ (cron table) file. It runs a job periodically
2016-08-26 23:23:16 +00:00
on a given schedule, written in [Cron ](https://en.wikipedia.org/wiki/Cron ) format.
2016-11-09 10:32:57 +00:00
**Note:**: The question mark (`?`) in the schedule has the same meaning as an asterisk `*` ,
2016-10-18 12:39:07 +00:00
that is, it stands for any of available value for a given field.
2016-11-09 10:32:57 +00:00
**Note:**: ScheduledJob resource was introduced in Kubernetes version 1.4, but starting
from version 1.5 its current name is CronJob.
2016-08-26 23:23:16 +00:00
A typical use case is:
* Schedule a job execution at a given point in time.
* Create a periodic job, e.g. database backup, sending emails.
### Prerequisites
2016-11-09 10:32:57 +00:00
You need a working Kubernetes cluster at version >= 1.4 (for ScheduledJob), >= 1.5 (for CronJobs),
with batch/v2alpha1 API turned on by passing `--runtime-config=batch/v2alpha1` while bringing up
the API server (see [Turn on or off an API version for your cluster ](/docs/admin/cluster-management/#turn-on-or-off-an-api-version-for-your-cluster )
for more). You cannot use Cron Jobs on a hosted Kubernetes provider that has disabled alpha resources.
2016-08-26 23:23:16 +00:00
2016-11-09 10:32:57 +00:00
## Creating a Cron Job
2016-08-26 23:23:16 +00:00
2016-11-09 10:32:57 +00:00
Here is an example Cron Job. Every minute, it runs a simple job to print current time and then say
2016-08-26 23:23:16 +00:00
hello.
2016-11-09 10:32:57 +00:00
{% include code.html language="yaml" file="cronjob.yaml" ghlink="/docs/user-guide/cronjob.yaml" %}
2016-08-26 23:23:16 +00:00
2016-11-09 10:32:57 +00:00
Run the example cron job by downloading the example file and then running this command:
2016-08-26 23:23:16 +00:00
```shell
2016-11-09 10:32:57 +00:00
$ kubectl create -f ./cronjob.yaml
cronjob "hello" created
2016-08-26 23:23:16 +00:00
```
2016-11-09 10:32:57 +00:00
Alternatively, use `kubectl run` to create a cron job without writing full config:
2016-08-26 23:23:16 +00:00
```shell
2016-10-18 12:39:07 +00:00
$ kubectl run hello --schedule="*/1 * * * * " --restart=OnFailure --image=busybox -- /bin/sh -c "date; echo Hello from the Kubernetes cluster"
2016-11-09 10:32:57 +00:00
cronjob "hello" created
2016-08-26 23:23:16 +00:00
```
2016-11-09 10:32:57 +00:00
After creating the cron job, get its status using this command:
2016-08-26 23:23:16 +00:00
```shell
2016-11-09 10:32:57 +00:00
$ kubectl get cronjob hello
2016-08-26 23:23:16 +00:00
NAME SCHEDULE SUSPEND ACTIVE LAST-SCHEDULE
2016-10-18 12:39:07 +00:00
hello */1 * * * * False 0 < none >
2016-08-26 23:23:16 +00:00
```
2016-10-18 12:39:07 +00:00
As you can see above, there's no active job yet, and no job has been scheduled, either.
2016-08-26 23:23:16 +00:00
Watch for the job to be created in around one minute:
```shell
$ kubectl get jobs --watch
NAME DESIRED SUCCESSFUL AGE
hello-4111706356 1 1 2s
```
2016-11-09 10:32:57 +00:00
Now you've seen one running job scheduled by "hello". We can stop watching it and get the cron job again:
2016-08-26 23:23:16 +00:00
```shell
2016-11-09 10:32:57 +00:00
$ kubectl get cronjob hello
2016-08-26 23:23:16 +00:00
NAME SCHEDULE SUSPEND ACTIVE LAST-SCHEDULE
2016-10-18 12:39:07 +00:00
hello */1 * * * * False 0 Mon, 29 Aug 2016 14:34:00 -0700
2016-08-26 23:23:16 +00:00
```
You should see that "hello" successfully scheduled a job at the time specified in `LAST-SCHEDULE` . There are
2016-10-18 12:39:07 +00:00
currently 0 active jobs, meaning that the job that's scheduled is completed or failed.
2016-08-26 23:23:16 +00:00
Now, find the pods created by the job last scheduled and view the standard output of one of the pods. Note that
your job name and pod name would be different.
```shell
# Replace "hello-4111706356" with the job name in your system
$ pods=$(kubectl get pods --selector=job-name=hello-4111706356 --output=jsonpath={.items..metadata.name})
$ echo $pods
hello-4111706356-o9qcm
$ kubectl logs $pods
Mon Aug 29 21:34:09 UTC 2016
Hello from the Kubernetes cluster
```
2016-11-09 10:32:57 +00:00
## Deleting a Cron Job
2016-08-26 23:23:16 +00:00
2016-11-09 10:32:57 +00:00
Once you don't need a cron job anymore, simply delete it with `kubectl` :
2016-08-26 23:23:16 +00:00
```shell
2016-11-09 10:32:57 +00:00
$ kubectl delete cronjob hello
cronjob "hello" deleted
2016-08-26 23:23:16 +00:00
```
This stops new jobs from being created. However, running jobs won't be stopped, and no jobs or their pods will
2016-11-09 10:32:57 +00:00
be deleted. To clean up those jobs and pods, you need to list all jobs created by the cron job, and delete them all:
2016-08-26 23:23:16 +00:00
```shell
$ kubectl get jobs
NAME DESIRED SUCCESSFUL AGE
hello-1201907962 1 1 11m
hello-1202039034 1 1 8m
...
$ kubectl delete jobs hello-1201907962 hello-1202039034 ...
job "hello-1201907962" deleted
job "hello-1202039034" deleted
...
```
2016-11-09 10:32:57 +00:00
Once the jobs are deleted, the pods created by them are deleted as well. Note that all jobs created by cron
2016-10-18 12:39:07 +00:00
job "hello" will be prefixed "hello-". You can delete them at once with `kubectl delete jobs --all` , if you want to
2016-08-26 23:23:16 +00:00
delete all jobs in the current namespace (not just the ones created by "hello".)
2016-11-09 10:32:57 +00:00
## Cron Job Limitations
2016-08-26 23:23:16 +00:00
2016-11-09 10:32:57 +00:00
A cron job creates a job object _about_ once per execution time of its schedule. We say "about" because there
2016-08-26 23:23:16 +00:00
are certain circumstances where two jobs might be created, or no job might be created. We attempt to make these rare,
but do not completely prevent them. Therefore, jobs should be _idempotent_ .
The job is responsible for retrying pods, parallelism among pods it creates, and determining the success or failure
2016-11-09 10:32:57 +00:00
of the set of pods. A cron job does not examine pods at all.
2016-08-26 23:23:16 +00:00
2016-11-09 10:32:57 +00:00
## Writing a Cron Job Spec
2016-08-26 23:23:16 +00:00
2016-11-09 10:32:57 +00:00
As with all other Kubernetes configs, a cron job needs `apiVersion` , `kind` , and `metadata` fields. For general
2016-10-18 12:39:07 +00:00
information about working with config files, see [deploying applications ](/docs/user-guide/deploying-applications ),
2016-08-26 23:23:16 +00:00
[configuring containers ](/docs/user-guide/configuring-containers ), and
[using kubectl to manage resources ](/docs/user-guide/working-with-resources ) documents.
2016-11-09 10:32:57 +00:00
A cron job also needs a [`.spec` section ](https://github.com/kubernetes/kubernetes/tree/{{page.githubbranch}}/docs/devel/api-conventions.md#spec-and-status ).
2016-08-26 23:23:16 +00:00
2016-11-09 10:32:57 +00:00
**Note:** All modifications to a cron job, especially its `.spec` , will be applied only to the next run.
2016-08-26 23:23:16 +00:00
2016-10-18 12:39:07 +00:00
### Schedule
2016-08-26 23:23:16 +00:00
The `.spec.schedule` is a required field of the `.spec` . It takes a [Cron ](https://en.wikipedia.org/wiki/Cron ) format
2016-10-18 12:39:07 +00:00
string, e.g. `0 * * * *` or `@hourly` , as schedule time of its jobs to be created and executed.
2016-08-26 23:23:16 +00:00
### Job Template
The `.spec.jobTemplate` is another required field of the `.spec` . It is a job template. It has exactly the same schema
as a [Job ](/docs/user-guide/jobs ), except it is nested and does not have an `apiVersion` or `kind` , see
[Writing a Job Spec ](/docs/user-guide/jobs/#writing-a-job-spec ).
### Starting Deadline Seconds
The `.spec.startingDeadlineSeconds` field is optional. It stands for the deadline (in seconds) for starting the job
2016-10-18 12:39:07 +00:00
if it misses its scheduled time for any reason. Missed jobs executions will be counted as failed ones. If not specified,
there's no deadline.
2016-08-26 23:23:16 +00:00
### Concurrency Policy
The `.spec.concurrencyPolicy` field is also optional. It specifies how to treat concurrent executions of a job
2016-11-09 10:32:57 +00:00
created by this cron job. Only one of the following concurrent policies may be specified:
2016-08-26 23:23:16 +00:00
* `Allow` (default): allows concurrently running jobs
* `Forbid` : forbids concurrent runs, skipping next run if previous hasn't finished yet
* `Replace` : cancels currently running job and replaces it with a new one
2016-11-09 10:32:57 +00:00
Note that concurrency policy only applies to the jobs created by the same cron job. If there are multiple
cron jobs, their respective jobs are always allowed to run concurrently.
2016-08-26 23:23:16 +00:00
### Suspend
2016-10-18 12:39:07 +00:00
The `.spec.suspend` field is also optional. If set to `true` , all subsequent executions will be suspended. It does not
apply to already started executions. Defaults to false.