forked from khuedoan/homelab
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathvalues.yaml
87 lines (86 loc) · 2.12 KB
/
values.yaml
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
80
81
82
83
84
85
86
87
elementweb:
ingress:
enabled: true
className: nginx
annotations:
cert-manager.io/cluster-issuer: letsencrypt-prod
external-dns.alpha.kubernetes.io/target: "jupiter-tunnel.mein.nl"
external-dns.alpha.kubernetes.io/cloudflare-proxied: "true"
hajimari.io/appName: Chat
hajimari.io/icon: chat
hosts:
- host: &frontend_host chat.mein.nl
paths:
- path: /
pathType: Prefix
tls:
- secretName: element-tls-certificate
hosts:
- *frontend_host
config:
default:
base_url: https://matrix.mein.nl
server_name: mein.nl
dendrite:
polylith: false
image:
name: "locmai/dendrite-monolith:010922" # TODO switch to official image
pullPolicy: IfNotPresent
configuration:
version: 2
servername: &backend_host matrix.mein.nl
database:
host: matrix-postgresql:5432
user: dendrite
password: dendrite
max_open_conns: 100
max_idle_conns: 2
conn_max_lifetime: -1
metrics:
enabled: true
jetstream:
in_memory: false
addresses:
- nats://matrix-nats:4222
persistence:
storageClass: longhorn
logs:
capacity: 1Gi
media:
capacity: 5Gi
nats:
enabled: true
nats:
jetstream:
enabled: true
postgresql:
enabled: true
global:
postgresql:
postgresqlDatabase: dendrite
postgresqlUsername: dendrite
postgresqlPassword: dendrite
persistence:
enabled: true
storageClass: longhorn
accessModes:
- ReadWriteOnce
size: 5Gi
ingress:
enabled: true
className: nginx
annotations:
cert-manager.io/cluster-issuer: letsencrypt-prod
external-dns.alpha.kubernetes.io/target: "jupiter-tunnel.mein.nl"
external-dns.alpha.kubernetes.io/cloudflare-proxied: "true"
nginx.ingress.kubernetes.io/proxy-body-size: 32m
hajimari.io/enable: 'false'
hosts:
- host: *backend_host
paths:
- path: /
pathType: Prefix
tls:
- secretName: dendrite-tls-certificate
hosts:
- *backend_host