feat: reorganize media apps under namespace folders with media PVC #57

Merged
gitea-admin merged 23 commits from orion/auto/feat-reorganize-media-apps-under-namespa-1779056222548 into main 2026-05-17 22:18:21 +00:00
Showing only changes of commit 617a4ed64a - Show all commits
+24 -10
View File
@@ -3,8 +3,6 @@ kind: Deployment
metadata: metadata:
name: lidarr name: lidarr
namespace: media namespace: media
labels:
app: lidarr
spec: spec:
replicas: 1 replicas: 1
selector: selector:
@@ -20,11 +18,27 @@ spec:
image: lscr.io/linuxserver/lidarr:latest image: lscr.io/linuxserver/lidarr:latest
ports: ports:
- containerPort: 8686 - containerPort: 8686
env: [] env:
resources: - name: PUID
requests: value: "1000"
cpu: 100m - name: PGID
memory: 128Mi value: "1000"
limits: - name: TZ
cpu: 500m value: "America/New_York"
memory: 512Mi volumeMounts:
- name: config
mountPath: /config
- name: media
mountPath: /media
- name: downloads
mountPath: /downloads
volumes:
- name: config
persistentVolumeClaim:
claimName: lidarr-config
- name: media
persistentVolumeClaim:
claimName: media-data
- name: downloads
persistentVolumeClaim:
claimName: lidarr-downloads