job-tempalte/infra/k8s/clone_job.yaml
ry.yamafuji e05f9fc4be
Some checks failed
Python Test / python-test (push) Failing after 9s
未整理ファイルアップ
2025-12-22 00:26:42 +09:00

21 lines
468 B
YAML

apiVersion: batch/v1
kind: CronJob
metadata:
name: wf-<proj>-<env>-<job>-<schedule>
spec:
schedule: "0 * * * *"
spec:
schedule: "0 * * * *"
successfulJobsHistoryLimit: 3
failedJobsHistoryLimit: 3
jobTemplate:
spec:
backoffLimit: 2
template:
spec:
restartPolicy: Never
containers:
- name: main
image: alpine:3.20
command: ["sh","-lc"]
args: ["date; echo run"]