19 lines
376 B
Plaintext
19 lines
376 B
Plaintext
|
apiVersion: batch/v2alpha1
|
||
|
kind: CronJob
|
||
|
metadata:
|
||
|
name: hello
|
||
|
spec:
|
||
|
schedule: "*/1 * * * *"
|
||
|
jobTemplate:
|
||
|
spec:
|
||
|
template:
|
||
|
spec:
|
||
|
containers:
|
||
|
- name: hello
|
||
|
image: busybox
|
||
|
args:
|
||
|
- /bin/sh
|
||
|
- -c
|
||
|
- date; echo Hello from the Kubernetes cluster
|
||
|
restartPolicy: OnFailure
|