From 9e2b3a2c25f721e0f1821854818813d60e697ffa Mon Sep 17 00:00:00 2001 From: sHa Date: Mon, 16 Mar 2026 02:18:20 +0200 Subject: [PATCH] feat: Add database backup support and bump version to 0.1.10 --- jellyfin/Chart.yaml | 2 +- jellyfin/templates/backup-cronjob.yaml | 9 ++++++--- 2 files changed, 7 insertions(+), 4 deletions(-) diff --git a/jellyfin/Chart.yaml b/jellyfin/Chart.yaml index ff42fe3..714a84e 100644 --- a/jellyfin/Chart.yaml +++ b/jellyfin/Chart.yaml @@ -5,5 +5,5 @@ type: application annotations: version-source: github-release:jellyfin/jellyfin version-pattern: "s|^v||" -version: 0.1.9 +version: 0.1.10 appVersion: "10.11.6" diff --git a/jellyfin/templates/backup-cronjob.yaml b/jellyfin/templates/backup-cronjob.yaml index 518c74c..14e0ba3 100644 --- a/jellyfin/templates/backup-cronjob.yaml +++ b/jellyfin/templates/backup-cronjob.yaml @@ -41,7 +41,10 @@ spec: volumes: - name: backup-storage hostPath: - path: {{ .Values.backup.storagePath }} - type: DirectoryOrCreate - restartPolicy: OnFailure + path: {{ .Values.backup.storagePath }} + type: DirectoryOrCreate + restartPolicy: OnFailure + nodeSelector: {{ toYaml .Values.nodeSelector | nindent 8 }} + affinity: {{ toYaml .Values.affinity | nindent 8 }} + tolerations: {{ toYaml .Values.tolerations | nindent 8 }} {{- end }}