-
Notifications
You must be signed in to change notification settings - Fork 0
/
03.ds.yml
40 lines (40 loc) · 941 Bytes
/
03.ds.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
---
apiVersion: extensions/v1beta1
kind: DaemonSet
metadata:
name: tvheadend
labels:
name: tvheadend
tier: tv
spec:
selector:
matchLabels:
name: tvheadend
template:
metadata:
labels:
name: tvheadend
tier: tv
spec:
hostNetwork: true
containers:
- name: tvheadend
image: linuxserver/tvheadend
ports:
- containerPort: 9981
name: web
- containerPort: 9982
name: htsp
volumeMounts:
- mountPath: /exports/video
name: tvheadend-record-claim
- mountPath: /config
name: tvheadend-config
volumes:
- name: tvheadend-record-claim
persistentVolumeClaim:
claimName: tvheadend-record-claim
- name: tvheadend-config
hostPath:
path: /srv/tvheadend/config
type: Directory