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 2209d02317 - Show all commits
+24 -10
View File
@@ -3,8 +3,6 @@ kind: Deployment
metadata:
name: bazarr
namespace: media
labels:
app: bazarr
spec:
replicas: 1
selector:
@@ -20,11 +18,27 @@ spec:
image: lscr.io/linuxserver/bazarr:latest
ports:
- containerPort: 6767
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: podcasts
mountPath: /podcasts
volumes:
- name: config
persistentVolumeClaim:
claimName: bazarr-config
- name: media
persistentVolumeClaim:
claimName: media-data
- name: podcasts
persistentVolumeClaim:
claimName: bazarr-podcasts