feat: add Radarr deployment, service, and persistent volume claim
This commit is contained in:
48
cluster/apps/radarr/radarr.yml
Normal file
48
cluster/apps/radarr/radarr.yml
Normal file
@@ -0,0 +1,48 @@
|
||||
---
|
||||
apiVersion: apps/v1
|
||||
kind: Deployment
|
||||
metadata:
|
||||
name: radarr
|
||||
namespace: default
|
||||
spec:
|
||||
replicas: 1
|
||||
selector:
|
||||
matchLabels:
|
||||
app: radarr
|
||||
template:
|
||||
metadata:
|
||||
labels:
|
||||
app: radarr
|
||||
spec:
|
||||
containers:
|
||||
- name: radarr
|
||||
image: lscr.io/linuxserver/radarr:5.21.1
|
||||
ports:
|
||||
- containerPort: 7878
|
||||
env:
|
||||
- name: PUID
|
||||
value: "1000"
|
||||
- name: PGID
|
||||
value: "1000"
|
||||
- name: TZ
|
||||
value: "Asia/Kolkata"
|
||||
volumeMounts:
|
||||
- name: movies
|
||||
mountPath: /movies
|
||||
- name: downloads
|
||||
mountPath: /downloads
|
||||
- name: config
|
||||
mountPath: /config
|
||||
volumes:
|
||||
- name: movies
|
||||
nfs:
|
||||
server: 10.0.0.123
|
||||
path: /merge/movies
|
||||
- name: downloads
|
||||
nfs:
|
||||
server: 10.0.0.123
|
||||
path: /merge/downloads
|
||||
- name: config
|
||||
persistentVolumeClaim:
|
||||
claimName: longhorn-radarr
|
||||
|
||||
Reference in New Issue
Block a user