feat: reorganize media apps under namespace folders with media PVC
This commit is contained in:
@@ -3,8 +3,6 @@ kind: Deployment
|
|||||||
metadata:
|
metadata:
|
||||||
name: bazarr
|
name: bazarr
|
||||||
namespace: media
|
namespace: media
|
||||||
labels:
|
|
||||||
app: bazarr
|
|
||||||
spec:
|
spec:
|
||||||
replicas: 1
|
replicas: 1
|
||||||
selector:
|
selector:
|
||||||
@@ -20,11 +18,27 @@ spec:
|
|||||||
image: lscr.io/linuxserver/bazarr:latest
|
image: lscr.io/linuxserver/bazarr:latest
|
||||||
ports:
|
ports:
|
||||||
- containerPort: 6767
|
- containerPort: 6767
|
||||||
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: podcasts
|
||||||
|
mountPath: /podcasts
|
||||||
|
volumes:
|
||||||
|
- name: config
|
||||||
|
persistentVolumeClaim:
|
||||||
|
claimName: bazarr-config
|
||||||
|
- name: media
|
||||||
|
persistentVolumeClaim:
|
||||||
|
claimName: media-data
|
||||||
|
- name: podcasts
|
||||||
|
persistentVolumeClaim:
|
||||||
|
claimName: bazarr-podcasts
|
||||||
Reference in New Issue
Block a user