-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdispatcharr-celery.yml
More file actions
61 lines (60 loc) · 1.94 KB
/
dispatcharr-celery.yml
File metadata and controls
61 lines (60 loc) · 1.94 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
- name: Deploy Dispatcharr Celery Worker
hosts: master
gather_facts: false
vars:
desired_state: "present"
tasks:
- name: Create Celery PVC
kubernetes.core.k8s:
kubeconfig: /etc/rancher/k3s/k3s.yaml
state: "{{ desired_state }}"
definition:
apiVersion: v1
kind: PersistentVolumeClaim
metadata:
namespace: livetv
name: celery-data
spec:
accessModes:
- ReadWriteOnce
resources:
requests:
storage: 1Gi
- name: Deploy Dispatcharr Celery Worker
kubernetes.core.k8s:
kubeconfig: /etc/rancher/k3s/k3s.yaml
state: "{{ desired_state }}"
definition:
apiVersion: apps/v1
kind: Deployment
metadata:
name: dispatcharr-celery
namespace: livetv
spec:
replicas: 1
selector:
matchLabels:
app: dispatcharr-celery
template:
metadata:
labels:
app: dispatcharr-celery
spec:
containers:
- name: dispatcharr-celery
image: ghcr.io/dispatcharr/dispatcharr:0.5.1-arm64
command: ["celery"]
args: ["-A", "dispatcharr", "worker", "-l", "info"]
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