Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion charts/servarr/Chart.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ maintainers:
url: https://kubito.dev
apiVersion: v2
appVersion: 1.3.0
version: 1.5.2
version: 1.5.3
description: Kubito Servarr Helm Chart
home: https://github.com/kubitodev/helm/tree/main/charts/servarr
icon: https://kubito.dev/images/kubito.svg
Expand Down
3 changes: 3 additions & 0 deletions charts/servarr/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -170,6 +170,7 @@ The command removes all the Kubernetes components associated with the chart and
| `sonarr.persistence.existingClaim` | The name of an existing claim to use for the persistence. | `""` |
| `sonarr.persistence.accessMode` | The access mode to use for the persistence. | `ReadWriteOnce` |
| `sonarr.persistence.size` | The size to use for the persistence. | `800Mi` |
| `sonarr.persistence.chownMedia` | Whether to recursively chown Sonarr and qBittorrent media folders in the init container. | `true` |
| `sonarr.persistence.additionalVolumes` | Additional volumes to add to the pod. | `[]` |
| `sonarr.persistence.additionalMounts` | Additional volume mounts to add to the pod. | `[]` |

Expand Down Expand Up @@ -496,6 +497,7 @@ The command removes all the Kubernetes components associated with the chart and
| `radarr.persistence.existingClaim` | The name of an existing claim to use for the persistence. | `""` |
| `radarr.persistence.accessMode` | The access mode to use for the persistence. | `ReadWriteOnce` |
| `radarr.persistence.size` | The size to use for the persistence. | `800Mi` |
| `radarr.persistence.chownMedia` | Whether to recursively chown Radarr and qBittorrent media folders in the init container. | `true` |
| `radarr.persistence.additionalVolumes` | Additional volumes to add to the pod. | `[]` |
| `radarr.persistence.additionalMounts` | Additional volume mounts to add to the pod. | `[]` |

Expand Down Expand Up @@ -552,6 +554,7 @@ The command removes all the Kubernetes components associated with the chart and
| `lidarr.persistence.existingClaim` | The name of an existing claim to use for the persistence. | `""` |
| `lidarr.persistence.accessMode` | The access mode to use for the persistence. | `ReadWriteOnce` |
| `lidarr.persistence.size` | The size to use for the persistence. | `800Mi` |
| `lidarr.persistence.chownMedia` | Whether to recursively chown Lidarr and qBittorrent media folders in the init container. | `true` |
| `lidarr.persistence.additionalVolumes` | Additional volumes to add to the pod. | `[]` |
| `lidarr.persistence.additionalMounts` | Additional volume mounts to add to the pod. | `[]` |
| `lidarr.lidatube.enabled` | Whether to run the LidaTube sidecar (finds and downloads missing Lidarr albums via yt-dlp). | `false` |
Expand Down
2 changes: 1 addition & 1 deletion charts/servarr/templates/lidarr/deployment.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ spec:
initContainers:
- name: init-directories
image: busybox
command: ['sh', '-c', 'mkdir -p /media/{{ .Values.lidarr.persistence.path }} /media/{{ .Values.qbittorrent.persistence.path }} && chown -R 1000:1000 /media/{{ .Values.lidarr.persistence.path }} /media/{{ .Values.qbittorrent.persistence.path }}']
command: ['sh', '-c', 'mkdir -p /media/{{ .Values.lidarr.persistence.path }} /media/{{ .Values.qbittorrent.persistence.path }}{{- if .Values.lidarr.persistence.chownMedia }} && chown -R 1000:1000 /media/{{ .Values.lidarr.persistence.path }} /media/{{ .Values.qbittorrent.persistence.path }}{{- end }}']
volumeMounts:
- name: media
mountPath: /media
Expand Down
2 changes: 1 addition & 1 deletion charts/servarr/templates/radarr/deployment.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ spec:
initContainers:
- name: init-directories
image: busybox
command: ['sh', '-c', 'mkdir -p /media/{{ .Values.radarr.persistence.path }} /media/{{ .Values.qbittorrent.persistence.path }} && chown -R 1000:1000 /media/{{ .Values.radarr.persistence.path }} /media/{{ .Values.qbittorrent.persistence.path }}']
command: ['sh', '-c', 'mkdir -p /media/{{ .Values.radarr.persistence.path }} /media/{{ .Values.qbittorrent.persistence.path }}{{- if .Values.radarr.persistence.chownMedia }} && chown -R 1000:1000 /media/{{ .Values.radarr.persistence.path }} /media/{{ .Values.qbittorrent.persistence.path }}{{- end }}']
volumeMounts:
- name: media
mountPath: /media
Expand Down
2 changes: 1 addition & 1 deletion charts/servarr/templates/sonarr/deployment.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ spec:
initContainers:
- name: init-directories
image: busybox
command: ['sh', '-c', 'mkdir -p /media/{{ .Values.sonarr.persistence.path }} /media/{{ .Values.qbittorrent.persistence.path }} && chown -R 1000:1000 /media/{{ .Values.sonarr.persistence.path }} /media/{{ .Values.qbittorrent.persistence.path }}']
command: ['sh', '-c', 'mkdir -p /media/{{ .Values.sonarr.persistence.path }} /media/{{ .Values.qbittorrent.persistence.path }}{{- if .Values.sonarr.persistence.chownMedia }} && chown -R 1000:1000 /media/{{ .Values.sonarr.persistence.path }} /media/{{ .Values.qbittorrent.persistence.path }}{{- end }}']
volumeMounts:
- name: media
mountPath: /media
Expand Down
6 changes: 6 additions & 0 deletions charts/servarr/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -267,6 +267,7 @@ jellyfin:
## @param sonarr.persistence.existingClaim The name of an existing claim to use for the persistence.
## @param sonarr.persistence.accessMode The access mode to use for the persistence.
## @param sonarr.persistence.size The size to use for the persistence.
## @param sonarr.persistence.chownMedia Whether to recursively chown Sonarr and qBittorrent media folders in the init container.
## @param sonarr.persistence.additionalVolumes Additional volumes to add to the pod.
## @param sonarr.persistence.additionalMounts Additional volume mounts to add to the pod.
##
Expand Down Expand Up @@ -382,6 +383,7 @@ sonarr:
persistence:
enabled: true
path: tv
chownMedia: true
storageClass: ""
existingClaim: ""
accessMode: ReadWriteOnce
Expand Down Expand Up @@ -1236,6 +1238,7 @@ bazarr:
## @param radarr.persistence.existingClaim The name of an existing claim to use for the persistence.
## @param radarr.persistence.accessMode The access mode to use for the persistence.
## @param radarr.persistence.size The size to use for the persistence.
## @param radarr.persistence.chownMedia Whether to recursively chown Radarr and qBittorrent media folders in the init container.
## @param radarr.persistence.additionalVolumes Additional volumes to add to the pod.
## @param radarr.persistence.additionalMounts Additional volume mounts to add to the pod.
##
Expand Down Expand Up @@ -1350,6 +1353,7 @@ radarr:
persistence:
enabled: true
path: movies
chownMedia: true
storageClass: ""
existingClaim: ""
accessMode: ReadWriteOnce
Expand Down Expand Up @@ -1408,6 +1412,7 @@ radarr:
## @param lidarr.persistence.existingClaim The name of an existing claim to use for the persistence.
## @param lidarr.persistence.accessMode The access mode to use for the persistence.
## @param lidarr.persistence.size The size to use for the persistence.
## @param lidarr.persistence.chownMedia Whether to recursively chown Lidarr and qBittorrent media folders in the init container.
## @param lidarr.persistence.additionalVolumes Additional volumes to add to the pod.
## @param lidarr.persistence.additionalMounts Additional volume mounts to add to the pod.
## @param lidarr.lidatube.enabled Whether to run the LidaTube sidecar (finds and downloads missing Lidarr albums via yt-dlp).
Expand Down Expand Up @@ -1532,6 +1537,7 @@ lidarr:
persistence:
enabled: true
path: music
chownMedia: true
storageClass: ""
existingClaim: ""
accessMode: ReadWriteOnce
Expand Down