feat: reorganize media apps under namespace folders with media PVC
This commit is contained in:
@@ -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
|
||||||
Reference in New Issue
Block a user