Files
turingpi/helm-values/radarr_values.yaml
T
gilgamezh bf63967cfd fix: revert to correct Bananaspliff chart service port structure
- Use service.port directly as per chart schema
- Radarr: service.port: 7878
- Sonarr: service.port: 8989

🤖 Generated with [Claude Code](https://claude.ai/code)

Co-Authored-By: Claude <noreply@anthropic.com>
2025-08-15 17:59:12 +02:00

40 lines
611 B
YAML

---
replicaCount: 1
image:
repository: ghcr.io/linuxserver/radarr
tag: latest
pullPolicy: Always
env:
- name: PUID
value: "1000"
- name: PGID
value: "1000"
- name: TZ
value: "Europe/Amsterdam"
service:
type: ClusterIP
port: 7878
persistence:
config:
enabled: true
existingClaim: "plex-data"
subPath: "configs/radarr"
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"