rename jellyfin to helm

This commit is contained in:
ducoterra
2020-11-23 15:50:11 -05:00
parent 0f849f2e10
commit 27ab7bdba3
9 changed files with 0 additions and 0 deletions

View File

@@ -0,0 +1,18 @@
{{ 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 }}