feat: reorganize media apps under namespace folders with media PVC

This commit is contained in:
2026-05-17 22:17:06 +00:00
parent e0b6ed47b8
commit 715848bf4c
+24 -10
View File
@@ -3,8 +3,6 @@ kind: Deployment
metadata:
name: radarr
namespace: media
labels:
app: radarr
spec:
replicas: 1
selector:
@@ -20,11 +18,27 @@ spec:
image: lscr.io/linuxserver/radarr:latest
ports:
- containerPort: 7878
env: []
resources:
requests:
cpu: 100m
memory: 128Mi
limits:
cpu: 500m
memory: 512Mi
env:
- name: PUID
value: "1000"
- name: PGID
value: "1000"
- name: TZ
value: "America/New_York"
volumeMounts:
- name: config
mountPath: /config
- name: media
mountPath: /media
- name: downloads
mountPath: /downloads
volumes:
- name: config
persistentVolumeClaim:
claimName: radarr-config
- name: media
persistentVolumeClaim:
claimName: media-data
- name: downloads
persistentVolumeClaim:
claimName: radarr-downloads