-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathplex.yaml
66 lines (64 loc) · 1.52 KB
/
plex.yaml
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
kind: Pod
apiVersion: v1
metadata:
name: plex
labels:
app: plex
spec:
hostNetwork: true
containers:
- name: plex
image: linuxserver/plex:1.15.3.876-ad6e39743-ls18
env:
- name: PUID
value: "1000"
- name: PGID
value: "1000"
- name: TZ
value: Australia/Sydney
- name: VERSION
value: docker
ports:
- containerPort: 32400
hostPort: 32400
protocol: TCP
- containerPort: 32400
hostPort: 32400
protocol: UDP
- containerPort: 32469
hostPort: 32469
protocol: TCP
- containerPort: 32469
hostPort: 32469
protocol: UDP
- containerPort: 5353
hostPort: 5353
protocol: UDP
- containerPort: 1900
hostPort: 1900
protocol: UDP
volumeMounts:
- mountPath: "/config"
name: plex-storage
subPath: "config"
- mountPath: "/media/tv"
name: media-storage
subPath: "tvshows"
- mountPath: "/media/movies"
name: media-storage
subPath: "movies"
- mountPath: "/media/music"
name: media-storage
subPath: "music"
- mountPath: "/transcode"
name: plex-storage
subPath: "transcode"
volumes:
- name: plex-storage
hostPath:
path: /mnt/library/plex
type: Directory
- name: media-storage
hostPath:
path: /mnt/library/media
type: Directory