-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathradarr-deploy.yml
66 lines (66 loc) · 1.45 KB
/
radarr-deploy.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
kind: Deployment
apiVersion: apps/v1
metadata:
name: radarr
labels:
app: radarr
part-of: radarr
spec:
replicas: 1
selector:
matchLabels:
app: radarr
part-of: radarr
template:
metadata:
labels:
app: radarr
part-of: radarr
spec:
containers:
- name: radarr
image: ghcr.io/linuxserver/radarr:4.0.5-nightly-alpine
ports:
- name: radarr
containerPort: 7878
env:
- name: PUID
value: "1000"
- name: PGID
value: "1000"
- name: TZ
value: "Europe/Paris"
- name: UMASK
value: "022"
volumeMounts:
- name: radarr
mountPath: /config
- name: movies
mountPath: /movies
- name: downloads
mountPath: /downloads/movies
resources:
limits:
memory: 200Mi
requests:
memory: 150Mi
readinessProbe:
tcpSocket:
port: radarr
initialDelaySeconds: 5
periodSeconds: 10
livenessProbe:
tcpSocket:
port: radarr
initialDelaySeconds: 15
periodSeconds: 20
volumes:
- name: radarr
persistentVolumeClaim:
claimName: radarr
- name: movies
persistentVolumeClaim:
claimName: movies
- name: downloads
persistentVolumeClaim:
claimName: downloads