feat: reorganize media apps under namespace folders with media PVC #57
@@ -3,8 +3,6 @@ kind: Deployment
|
|||||||
metadata:
|
metadata:
|
||||||
name: readarr
|
name: readarr
|
||||||
namespace: media
|
namespace: media
|
||||||
labels:
|
|
||||||
app: readarr
|
|
||||||
spec:
|
spec:
|
||||||
replicas: 1
|
replicas: 1
|
||||||
selector:
|
selector:
|
||||||
@@ -17,14 +15,30 @@ spec:
|
|||||||
spec:
|
spec:
|
||||||
containers:
|
containers:
|
||||||
- name: readarr
|
- name: readarr
|
||||||
image: lscr.io/linuxserver/readarr:latest
|
image: lscr.io/linuxserver/readarr:develop
|
||||||
ports:
|
ports:
|
||||||
- containerPort: 8787
|
- containerPort: 8787
|
||||||
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: books
|
||||||
|
mountPath: /books
|
||||||
|
- name: downloads
|
||||||
|
mountPath: /downloads
|
||||||
|
volumes:
|
||||||
|
- name: config
|
||||||
|
persistentVolumeClaim:
|
||||||
|
claimName: readarr-config
|
||||||
|
- name: books
|
||||||
|
persistentVolumeClaim:
|
||||||
|
claimName: readarr-books
|
||||||
|
- name: downloads
|
||||||
|
persistentVolumeClaim:
|
||||||
|
claimName: readarr-downloads
|
||||||
Reference in New Issue
Block a user