-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdispatcharr-db.yml
More file actions
79 lines (77 loc) · 2.32 KB
/
dispatcharr-db.yml
File metadata and controls
79 lines (77 loc) · 2.32 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
75
76
77
78
79
- name: Deploy Dispatcharr Database (PostgreSQL)
hosts: master
gather_facts: false
vars:
desired_state: "present"
tasks:
- name: Create PostgreSQL PVC
kubernetes.core.k8s:
kubeconfig: /etc/rancher/k3s/k3s.yaml
state: "{{ desired_state }}"
definition:
apiVersion: v1
kind: PersistentVolumeClaim
metadata:
namespace: livetv
name: postgres-data
spec:
accessModes:
- ReadWriteOnce
resources:
requests:
storage: 5Gi
- name: Deploy PostgreSQL
kubernetes.core.k8s:
kubeconfig: /etc/rancher/k3s/k3s.yaml
state: "{{ desired_state }}"
definition:
apiVersion: apps/v1
kind: Deployment
metadata:
name: dispatcharr-db
namespace: livetv
spec:
replicas: 1
selector:
matchLabels:
app: dispatcharr-db
template:
metadata:
labels:
app: dispatcharr-db
spec:
containers:
- name: postgres
image: postgres:14
env:
- name: PGDATA
value: /var/lib/postgresql/data/pgdata
- name: POSTGRES_DB
value: "dispatcharr"
- name: POSTGRES_USER
value: "dispatch"
- name: POSTGRES_PASSWORD
value: "secret"
volumeMounts:
- name: postgres-data
mountPath: /var/lib/postgresql/data
volumes:
- name: postgres-data
persistentVolumeClaim:
claimName: postgres-data
- name: Create PostgreSQL Service
kubernetes.core.k8s:
kubeconfig: /etc/rancher/k3s/k3s.yaml
state: "{{ desired_state }}"
definition:
apiVersion: v1
kind: Service
metadata:
name: dispatcharr-db
namespace: livetv
spec:
ports:
- port: 5432
targetPort: 5432
selector:
app: dispatcharr-db