From d78f0612ffb02478507ec1a1181a0ea4893e71b5 Mon Sep 17 00:00:00 2001 From: Feleuxens Date: Sun, 10 Dec 2023 13:40:49 +0100 Subject: [PATCH] Fix typos in volumes --- jellyfin/Chart.yaml | 2 +- jellyfin/templates/deployment.yaml | 2 +- jellyseerr/Chart.yaml | 2 +- jellyseerr/templates/deployment.yaml | 2 +- 4 files changed, 4 insertions(+), 4 deletions(-) diff --git a/jellyfin/Chart.yaml b/jellyfin/Chart.yaml index 4ab4320..32119fd 100644 --- a/jellyfin/Chart.yaml +++ b/jellyfin/Chart.yaml @@ -15,7 +15,7 @@ type: application # This is the chart version. This version number should be incremented each time you make changes # to the chart and its templates, including the app version. # Versions are expected to follow Semantic Versioning (https://semver.org/) -version: 0.2.0 +version: 0.2.1 # This is the version number of the application being deployed. This version number should be # incremented each time you make changes to the application. Versions are not expected to diff --git a/jellyfin/templates/deployment.yaml b/jellyfin/templates/deployment.yaml index 8721572..a269cd2 100644 --- a/jellyfin/templates/deployment.yaml +++ b/jellyfin/templates/deployment.yaml @@ -86,7 +86,7 @@ spec: volumes: {{- if .Values.persistence.config.enabled }} - name: config - presistentVolumeClaim: + persistentVolumeClaim: claimName: {{ if .Values.persistence.config.existingClaim }}{{ .Values.persistence.config.existingClaim }}{{ else }}{{ template "jellyfin.fullname" . }}-config{{ end }} {{- end }} {{- if .Values.persistence.media.enabled }} diff --git a/jellyseerr/Chart.yaml b/jellyseerr/Chart.yaml index 37f7892..a94b2b2 100644 --- a/jellyseerr/Chart.yaml +++ b/jellyseerr/Chart.yaml @@ -15,7 +15,7 @@ type: application # This is the chart version. This version number should be incremented each time you make changes # to the chart and its templates, including the app version. # Versions are expected to follow Semantic Versioning (https://semver.org/) -version: 0.1.0 +version: 0.1.1 # This is the version number of the application being deployed. This version number should be # incremented each time you make changes to the application. Versions are not expected to diff --git a/jellyseerr/templates/deployment.yaml b/jellyseerr/templates/deployment.yaml index 80ebd41..1ebfe52 100644 --- a/jellyseerr/templates/deployment.yaml +++ b/jellyseerr/templates/deployment.yaml @@ -61,7 +61,7 @@ spec: {{- end }} volumes: - name: data - presistentVolumeClaim: + persistentVolumeClaim: claimName: {{ if .Values.persistence.existingClaim }}{{ .Values.persistence.existingClaim }}{{ else }}{{ template "jellyseerr.fullname" . }}-data{{ end }} {{- if .Values.extraVolumes }} {{- toYaml .Values.extraVolumes | nindent 8 }}