mirror of
https://github.com/shadoll/helm-charts.git
synced 2026-08-28 11:33:17 +00:00
fix: Correct YAML structure for scheduling in backup template and bump to 0.1.12
This commit is contained in:
+1
-1
@@ -5,5 +5,5 @@ type: application
|
|||||||
annotations:
|
annotations:
|
||||||
version-source: github-release:jellyfin/jellyfin
|
version-source: github-release:jellyfin/jellyfin
|
||||||
version-pattern: "s|^v||"
|
version-pattern: "s|^v||"
|
||||||
version: 0.1.11
|
version: 0.1.12
|
||||||
appVersion: "10.11.6"
|
appVersion: "10.11.6"
|
||||||
|
|||||||
@@ -44,7 +44,16 @@ spec:
|
|||||||
path: {{ .Values.backup.storagePath }}
|
path: {{ .Values.backup.storagePath }}
|
||||||
type: DirectoryOrCreate
|
type: DirectoryOrCreate
|
||||||
restartPolicy: OnFailure
|
restartPolicy: OnFailure
|
||||||
nodeSelector: {{ toYaml .Values.nodeSelector | nindent 10 }}
|
{{- with .Values.nodeSelector }}
|
||||||
affinity: {{ toYaml .Values.affinity | nindent 10 }}
|
nodeSelector:
|
||||||
tolerations: {{ toYaml .Values.tolerations | nindent 10 }}
|
{{- toYaml . | nindent 10 }}
|
||||||
|
{{- end }}
|
||||||
|
{{- with .Values.affinity }}
|
||||||
|
affinity:
|
||||||
|
{{- toYaml . | nindent 10 }}
|
||||||
|
{{- end }}
|
||||||
|
{{- with .Values.tolerations }}
|
||||||
|
tolerations:
|
||||||
|
{{- toYaml . | nindent 10 }}
|
||||||
|
{{- end }}
|
||||||
{{- end }}
|
{{- end }}
|
||||||
|
|||||||
Reference in New Issue
Block a user