Skip to content

Commit b2c82ab

Browse files
committed
fix: radarr helm-chart
1 parent 658ca85 commit b2c82ab

File tree

4 files changed

+5
-5
lines changed

4 files changed

+5
-5
lines changed

charts/radarr/Chart.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,9 +2,9 @@ apiVersion: v2
22
name: radarr
33
description: radarr helm chart for Kubernetes
44
type: application
5-
version: 0.1.0
5+
version: 0.1.1
66
# image: linuxserver/radarr
7-
appVersion: "5.3.6.8612"
7+
appVersion: "5.3.6.8612-ls210"
88
sources:
99
- https://github.com/M0NsTeRRR/helm-charts/tree/main/charts/radarr
1010
home: https://github.com/Radarr/Radarr

charts/radarr/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# radarr
22

3-
![Version: 0.1.0](https://img.shields.io/badge/Version-0.1.0-informational?style=flat-square) ![Type: application](https://img.shields.io/badge/Type-application-informational?style=flat-square) ![AppVersion: 5.3.6.8612](https://img.shields.io/badge/AppVersion-5.3.6.8612-informational?style=flat-square)
3+
![Version: 0.1.1](https://img.shields.io/badge/Version-0.1.1-informational?style=flat-square) ![Type: application](https://img.shields.io/badge/Type-application-informational?style=flat-square) ![AppVersion: 5.3.6.8612-ls210](https://img.shields.io/badge/AppVersion-5.3.6.8612--ls210-informational?style=flat-square)
44

55
radarr helm chart for Kubernetes
66

charts/radarr/templates/_helpers.tpl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -65,5 +65,5 @@ Create the name of the service account to use
6565
Create the name of the pvc config to use
6666
*/}}
6767
{{- define "radarr.configPersistenceName" -}}
68-
{{- printf "%s-config" (include "radarr.fullname" .) -}}
68+
{{- default (printf "%s-config" (include "radarr.fullname" .)) .Values.config.persistence.name }}
6969
{{- end }}

charts/radarr/templates/deployment.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -72,7 +72,7 @@ spec:
7272
volumes:
7373
- name: config
7474
persistentVolumeClaim:
75-
claimName: {{ include "radarr.configPersistenceName" . }}
75+
claimName: {{ include "radarr.configPersistenceName" $ }}
7676
{{- toYaml . | nindent 8 }}
7777
{{- end }}
7878
{{- with .Values.nodeSelector }}

0 commit comments

Comments
 (0)