From 43e7fa5bb1a34eb9ba0c980b5c18285a713342e6 Mon Sep 17 00:00:00 2001 From: gitea-admin Date: Sun, 17 May 2026 22:17:04 +0000 Subject: [PATCH] feat: reorganize media apps under namespace folders with media PVC --- deployments/media/emby/deployment.yaml | 31 +++++++++++++++++--------- 1 file changed, 20 insertions(+), 11 deletions(-) diff --git a/deployments/media/emby/deployment.yaml b/deployments/media/emby/deployment.yaml index c33e00d..5172842 100644 --- a/deployments/media/emby/deployment.yaml +++ b/deployments/media/emby/deployment.yaml @@ -3,8 +3,6 @@ kind: Deployment metadata: name: emby namespace: media - labels: - app: emby spec: replicas: 1 selector: @@ -17,15 +15,26 @@ spec: spec: containers: - name: emby - image: emby/embyserver:latest + image: lscr.io/linuxserver/emby:latest ports: - containerPort: 8096 - containerPort: 8920 - env: [] - resources: - requests: - cpu: 500m - memory: 1Gi - limits: - cpu: 2000m - memory: 4Gi + env: + - name: PUID + value: "1000" + - name: PGID + value: "1000" + - name: TZ + value: "America/New_York" + volumeMounts: + - name: config + mountPath: /config + - name: media + mountPath: /media + volumes: + - name: config + persistentVolumeClaim: + claimName: emby-config + - name: media + persistentVolumeClaim: + claimName: media-data \ No newline at end of file