-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtautulli.yaml
More file actions
74 lines (73 loc) · 1.48 KB
/
tautulli.yaml
File metadata and controls
74 lines (73 loc) · 1.48 KB
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
apiVersion: apps/v1
kind: Deployment
metadata:
name: tautulli-deployment
labels:
app: tautulli
spec:
replicas: 1
selector:
matchLabels:
app: tautulli
template:
metadata:
labels:
app: tautulli
spec:
containers:
- name: tautulli
image: ghcr.io/linuxserver/tautulli
env:
- name: PUID
value: "999"
- name: PGID
value: "999"
- name: TZ
value: "America/Los_Angeles"
ports:
- containerPort: 8181
volumeMounts:
- mountPath: /config
name: tautulli-config
volumes:
- name: tautulli-config
hostPath:
path: /opt/plexstack/tautulli
--
kind: Service
apiVersion: v1
metadata:
name: tautulli-service
spec:
selector:
app: tautulli
ports:
- protocol: TCP
port: 8181
targetPort: 8181
type: LoadBalancer
---
kind: Ingress
apiVersion: networking.k8s.io/v1
metadata:
name: ingress-tautulli
namespace: plexstack
annotations:
cert-manager.io/cluster-issuer: letsencrypt-prod
kubernetes.io/ingress.class: nginx
spec:
tls:
- hosts:
- tautulli.ccrow.org
secretName: tautulli-tls
rules:
- host: tautulli.ccrow.org
http:
paths:
- path: /
pathType: Prefix
backend:
service:
name: tautulli-service
port:
number: 8181