Files
school-dev-k8s/practice/7.oneshot-tasks/2.cronjob/cronjob.yaml
T
Marsel Ibraev f44beb51a9 Add basic info
2021-09-24 11:51:02 +03:00

23 lines
457 B
YAML

---
apiVersion: batch/v1beta1
kind: CronJob
metadata:
name: hello
spec:
schedule: "*/1 * * * *"
concurrencyPolicy: Allow
jobTemplate:
spec:
backoffLimit: 2
activeDeadlineSeconds: 100
template:
spec:
containers:
- name: hello
image: busybox
args:
- /bin/sh
- -c
- date; echo Hello from the Kubernetes cluster
restartPolicy: Never