| 123456789101112131415 |
- apiVersion: batch/v1beta1
- kind: CronJob
- metadata:
- name: cron-job-ex
- spec:
- schedule: "*/1 * * * *"
- jobTemplate:
- spec:
- template:
- spec:
- containers:
- - name: hello
- image: busybox
- command: ["sh", "-c", "date;echo hello cronJob"]
- restartPolicy: Never
|