Files
turingpi/helm-values/sonarr_values.yaml
T
gilgamezh 64b7624e74 fix: correct persistence configuration for Bananaspliff charts
- Fix Radarr and Sonarr values to use Bananaspliff chart structure
- Use persistence.config and persistence.media instead of volumes/volumeMounts
- Reference existing plex-data PVC with proper subPaths
- Fixes FailedScheduling due to missing 'myvolume' PVC
2025-08-15 17:47:08 +02:00

40 lines
609 B
YAML

---
replicaCount: 1
image:
repository: ghcr.io/linuxserver/sonarr
tag: latest
pullPolicy: Always
env:
- name: PUID
value: "1000"
- name: PGID
value: "1000"
- name: TZ
value: "Europe/Amsterdam"
service:
type: ClusterIP
port: 8989
persistence:
config:
enabled: true
existingClaim: "plex-data"
subPath: "configs/sonarr"
media:
enabled: true
existingClaim: "plex-data"
mountPath: "/nfs"
resources:
requests:
memory: "500Mi"
cpu: "500m"
ephemeral-storage: "50Mi"
limits:
memory: "800Mi"
cpu: "1000m"
ephemeral-storage: "1Gi"