diff --git a/radarr/Chart.yaml b/radarr/Chart.yaml index 052f277c..96d102d8 100644 --- a/radarr/Chart.yaml +++ b/radarr/Chart.yaml @@ -2,7 +2,7 @@ apiVersion: v1 appVersion: 137 description: Radarr is a movie downloading client name: radarr -version: 0.1.0 +version: 0.1.2 keywords: - radarr - usenet diff --git a/radarr/README.md b/radarr/README.md index 99c29188..e334cf96 100644 --- a/radarr/README.md +++ b/radarr/README.md @@ -40,7 +40,7 @@ The following tables lists the configurable parameters of the Sentry chart and t | `puid` | process userID the radarr instance should run as | `1001` | | `pgid` | process groupID the radarr instance should run as | `1001` | | `Service.type` | Kubernetes service type for the radarr GUI | `ClusterIP` | -| `Service.port` | Kubernetes port where the radarr GUI is exposed| `6789` | +| `Service.port` | Kubernetes port where the radarr GUI is exposed| `7878` | | `Service.annotations` | Service annotations for the radarr GUI | `{}` | | `Service.labels` | Custom labels | `{}` | | `Service.loadBalancerIP` | Loadbalance IP for the radarr GUI | `{}` | diff --git a/radarr/templates/movies-pvc.yaml b/radarr/templates/movies-pvc.yaml index de3cc6aa..77dd02d7 100644 --- a/radarr/templates/movies-pvc.yaml +++ b/radarr/templates/movies-pvc.yaml @@ -1,5 +1,5 @@ -{{- if and .Values.persistence.downloads.enabled (not .Values.persistence.downloads.existingClaim) }} +{{- if and .Values.persistence.movies.enabled (not .Values.persistence.movies.existingClaim) }} kind: PersistentVolumeClaim apiVersion: v1 metadata: @@ -11,15 +11,15 @@ metadata: app.kubernetes.io/managed-by: {{ .Release.Service }} spec: accessModes: - - {{ .Values.persistence.downloads.accessMode | quote }} + - {{ .Values.persistence.movies.accessMode | quote }} resources: requests: - storage: {{ .Values.persistence.downloads.size | quote }} -{{- if .Values.persistence.downloads.storageClass }} -{{- if (eq "-" .Values.persistence.downloads.storageClass) }} + storage: {{ .Values.persistence.movies.size | quote }} +{{- if .Values.persistence.movies.storageClass }} +{{- if (eq "-" .Values.persistence.movies.storageClass) }} storageClassName: "" {{- else }} - storageClassName: "{{ .Values.persistence.downloads.storageClass }}" + storageClassName: "{{ .Values.persistence.movies.storageClass }}" {{- end }} {{- end }} {{- end -}} \ No newline at end of file