-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmedia.yml
376 lines (376 loc) · 9.07 KB
/
media.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
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
apiVersion: v1
kind: Pod
metadata:
annotations:
io.containers.autoupdate/media-jellyfin: image
io.containers.autoupdate/media-sabnzbd: image
io.containers.autoupdate/media-prowlarr: image
io.containers.autoupdate/media-lidarr: image
io.containers.autoupdate/media-radarr: image
io.containers.autoupdate/media-readarr: image
io.containers.autoupdate/media-sonarr: image
io.containers.autoupdate/media-jellyseerr: image
io.containers.autoupdate/media-heimdall: image
io.podman.annotations.kube.health.check/media-jellyfin: 'true'
io.podman.annotations.kube.health.check/media-sabnzbd: 'true'
io.podman.annotations.kube.health.check/media-prowlarr: 'true'
io.podman.annotations.kube.health.check/media-lidarr: 'true'
io.podman.annotations.kube.health.check/media-radarr: 'true'
io.podman.annotations.kube.health.check/media-readarr: 'true'
io.podman.annotations.kube.health.check/media-sonarr: 'true'
io.podman.annotations.kube.health.check/media-jellsyeerr: 'true'
io.podman.annotations.kube.health.check/media-homer: 'true'
creationTimestamp: '2025-01-05T00:38:59Z'
labels:
app: media
name: media
spec:
containers:
- env:
- name: TERM
value: xterm
- name: PUID
value: '1001'
- name: PGID
value: '1001'
- name: TZ
value: America/New_York
- name: LANG
value: en_US.UTF-8
- name: LANGUAGE
value: en_US.UTF-8
image: 'docker.io/jellyfin/jellyfin:latest'
name: jellyfin
group_add:
- render
ports:
- containerPort: 8096
hostPort: 8096
- containerPort: 8920
hostPort: 8920
- containerPort: 1900
hostPort: 1900
- containerPort: 7359
hostPort: 7359
restart: always
tty: true
healthcheck:
test: curl -i http://192.168.2.183:8096/health || exit 1
interval: 40s
timeout: 30s
retries: 3
start_period: 60s
volumeMounts:
- mountPath: /terra
name: terra
- mountPath: /dev/dri/renderD128
name: render-device
- mountPath: /dev/dri/card0
name: render-card
- mountPath: /cache
name: jellyfin-cache
- mountPath: /config
name: jellyfin-config
- env:
- name: PUID
value: '1001'
- name: PGID
value: '1001'
- name: TZ
value: America/New_York
- name: LANG
value: en_US.UTF-8
- name: LANGUAGE
value: en_US.UTF-8
image: 'docker.io/linuxserver/sabnzbd:latest'
name: sabnzbd
ports:
- containerPort: 8181
hostPort: 8181
restart: always
healthcheck:
test: curl --fail http://localhost:8080 || exit 1
interval: 40s
timeout: 30s
retries: 3
start_period: 60s
volumeMounts:
- mountPath: /downloads
name: sabnzbd-downloads
- mountPath: /incomplete-downloads
name: sabnzbd-incomplete
- mountPath: /jobs
name: sabnzbd-jobs
- mountPath: /config
name: sabnzbd-config
- env:
- name: PUID
value: '1001'
- name: PGID
value: '1001'
- name: TZ
value: America/New_York
- name: LANG
value: en_US.UTF-8
- name: LANGUAGE
value: en_US.UTF-8
image: 'docker.io/linuxserver/prowlarr:latest'
name: prowlarr
ports:
- containerPort: 9696
hostPort: 9696
restart: always
healthcheck:
test: curl --fail http://localhost:9696 || exit 1
interval: 40s
timeout: 30s
retries: 3
start_period: 60s
volumeMounts:
- mountPath: /config
name: prowlarr-config
- env:
- name: PUID
value: '1001'
- name: PGID
value: '1001'
- name: TZ
value: America/New_York
- name: LANG
value: en_US.UTF-8
- name: LANGUAGE
value: en_US.UTF-8
image: 'docker.io/linuxserver/lidarr:latest'
name: lidarr
ports:
- containerPort: 8686
hostPort: 8686
restart: always
healthcheck:
test: curl --fail http://localhost:8686 || exit 1
interval: 40s
timeout: 30s
retries: 3
start_period: 60
volumeMounts:
- mountPath: /config
name: lidarr-config
- mountPath: /music
name: samba-music
- mountPath: /downloads
name: sabnzbd-downloads
- env:
- name: PUID
value: '1001'
- name: PGID
value: '1001'
- name: TZ
value: America/New_York
- name: LANG
value: en_US.UTF-8
- name: LANGUAGE
value: en_US.UTF-8
image: 'docker.io/linuxserver/sonarr:latest'
name: sonarr
ports:
- containerPort: 8989
hostPort: 8989
restart: always
healthcheck:
test: curl --fail http://localhost:8989 || exit 1
interval: 40s
timeout: 30s
retries: 3
start_period: 60s
volumeMounts:
- mountPath: /terra
name: terra
- mountPath: /downloads
name: sabnzbd-downloads
- mountPath: /config
name: sonarr-config
- env:
- name: PUID
value: '1001'
- name: PGID
value: '1001'
- name: TZ
value: America/New_York
- name: LANG
value: en_US.UTF-8
- name: LANGUAGE
value: en_US.UTF-8
image: 'docker.io/linuxserver/radarr:latest'
name: radarr
ports:
- containerPort: 7878
hostPort: 7878
restart: always
healthcheck:
test: curl --fail http://localhost:7878 || exit 1
interval: 40s
timeout: 30s
retries: 3
start_period: 60s
volumeMounts:
- mountPath: /terra
name: terra
- mountPath: /downloads
name: sabnzbd-downloads
- mountPath: /config
name: radarr-config
- env:
- name: PUID
value: '1001'
- name: PGID
value: '1001'
- name: TZ
value: America/New_York
- name: LANG
value: en_US.UTF-8
- name: LANGUAGE
value: en_US.UTF-8
image: 'docker.io/linuxserver/readarr:develop'
name: readarr
ports:
- containerPort: 8787
hostPort: 8787
restart: always
healthcheck:
test: curl --fail http://localhost:8787 || exit 1
interval: 40s
timeout: 30s
retries: 3
start_period: 60s
volumeMounts:
- mountPath: /books
name: samba-books
- mountPath: /downloads
name: sabnzbd-downloads
- mountPath: /config
name: readarr-config
- env:
- name: PUID
value: '1001'
- name: PGID
value: '1001'
- name: TZ
value: America/New_York
- name: LANG
value: en_US.UTF-8
- name: LANGUAGE
value: en_US.UTF-8
image: 'docker.io/fallenbagel/jellyseerr:latest'
name: jellyseerr
ports:
- containerPort: 5055
hostPort: 5055
restart: always
healthcheck:
test: curl --fail http://localhost:5055 || exit 1
interval: 40s
timeout: 30s
retries: 3
start_period: 60s
volumeMounts:
- mountPath: /app/config
name: jellyseerr-config
- env:
- name: PUID
value: '1001'
- name: PGID
value: '1001'
- name: TZ
value: America/New_York
- name: LANG
value: en_US.UTF-8
- name: LANGUAGE
value: en_US.UTF-8
image: 'docker.io/b4bz/homer:latest'
name: homer
ports:
- containerPort: 8080
hostPort: 8585
restart: always
healthcheck:
test: curl --fail http://localhost || exit 1
interval: 40s
timeout: 30s
retries: 3
start_period: 60s
volumeMounts:
- mountPath: /www/assets
name: homer-config
volumes:
- hostPath:
path: /mnt/m2/music
type: Directory
name: samba-music
- hostPath:
path: /mnt/m2/books
type: Directory
name: samba-books
- hostPath:
path: /mnt/terra/media
type: Directory
name: terra
- hostPath:
path: /srv/containers/sabnzbd/config
type: Directory
name: sabnzbd-config
- hostPath:
path: /srv/containers/sabnzbd/jobs
type: Directory
name: sabnzbd-jobs
- hostPath:
path: /mnt/m2/containers/sabnzbd/incomplete-downloads
type: Directory
name: sabnzbd-incomplete
- hostPath:
path: /mnt/m2/containers/sabnzbd/downloads
type: Directory
name: sabnzbd-downloads
- hostPath:
path: /srv/containers/prowlarr/config
type: Directory
name: prowlarr-config
- hostPath:
path: /srv/containers/lidarr/config
type: Directory
name: lidarr-config
- hostPath:
path: /srv/containers/radarr/config
type: Directory
name: radarr-config
- hostPath:
path: /srv/containers/readarr/config
type: Directory
name: readarr-config
- hostPath:
path: /srv/containers/sonarr/config
type: Directory
name: sonarr-config
- hostPath:
path: /srv/containers/jellyseerr/config
type: Directory
name: jellyseerr-config
- hostPath:
path: /srv/containers/homer
type: Directory
name: homer-config
- hostPath:
path: /dev/dri/renderD128
type: Directory
name: render-device
- hostPath:
path: /dev/dri/card0
type: Directory
name: render-card
- hostPath:
path: /srv/containers/jellyfin/config
type: Directory
name: jellyfin-config
- hostPath:
path: /mnt/m2/jellyfin/cache
type: Directory
name: jellyfin-cache