mirror of
https://github.com/acedemand/kubernetes-essentials.git
synced 2021-08-24 18:29:57 +03:00
21 lines
417 B
YAML
21 lines
417 B
YAML
apiVersion: batch/v1beta1
|
|
kind: CronJob
|
|
metadata:
|
|
name: hello
|
|
spec:
|
|
schedule: "*/1 * * * *" # syntax is a same as in system cron jobs
|
|
jobTemplate:
|
|
spec:
|
|
template:
|
|
spec:
|
|
containers:
|
|
- name: hello
|
|
image: nginx
|
|
args:
|
|
- /bin/sh
|
|
- -c
|
|
- date; echo Hello from the Kubernetes cluster
|
|
restartPolicy: OnFailure
|
|
|
|
|