18 lines
397 B
YAML
18 lines
397 B
YAML
{{ if .Values.install.jf_detector }}
|
|
apiVersion: batch/v1beta1
|
|
kind: CronJob
|
|
metadata:
|
|
name: jf-detector
|
|
spec:
|
|
schedule: "*/1 * * * *"
|
|
successfulJobsHistoryLimit: 1
|
|
failedJobsHistoryLimit: 1
|
|
jobTemplate:
|
|
spec:
|
|
template:
|
|
spec:
|
|
containers:
|
|
- name: jf-detector
|
|
image: {{ .Values.jf_detector.image }}
|
|
restartPolicy: Never
|
|
{{ end }} |