-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdispatcharr-web.yml
More file actions
64 lines (63 loc) · 2.01 KB
/
dispatcharr-web.yml
File metadata and controls
64 lines (63 loc) · 2.01 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
- name: Deploy Dispatcharr Web UI
hosts: master
gather_facts: false
vars:
desired_state: "present"
tasks:
- name: Deploy Dispatcharr Web
kubernetes.core.k8s:
kubeconfig: /etc/rancher/k3s/k3s.yaml
state: "{{ desired_state }}"
definition:
apiVersion: apps/v1
kind: Deployment
metadata:
name: dispatcharr-web
namespace: livetv
spec:
replicas: 1
selector:
matchLabels:
app: dispatcharr-web
template:
metadata:
labels:
app: dispatcharr-web
spec:
containers:
- name: dispatcharr-web
image: ghcr.io/dispatcharr/dispatcharr:0.5.1-arm64
ports:
- containerPort: 9191
env:
- name: POSTGRES_HOST
value: dispatcharr-db
- name: POSTGRES_DB
value: dispatcharr
- name: POSTGRES_USER
value: dispatch
- name: POSTGRES_PASSWORD
value: secret
- name: REDIS_HOST
value: dispatcharr-redis
- name: CELERY_BROKER_URL
value: redis://dispatcharr-redis:6379/0
- name: DISPATCHARR_LOG_LEVEL
value: info
- name: Create LoadBalancer Service for Dispatcharr Web
kubernetes.core.k8s:
kubeconfig: /etc/rancher/k3s/k3s.yaml
state: "{{ desired_state }}"
definition:
apiVersion: v1
kind: Service
metadata:
name: dispatcharr-web
namespace: livetv
spec:
type: LoadBalancer
ports:
- port: 9191
targetPort: 9191
selector:
app: dispatcharr-web