mirror of
https://github.com/khuedoan/homelab.git
synced 2025-01-05 13:08:52 +07:00
1af664d6c0
More eye candies.
83 lines
2.0 KiB
YAML
83 lines
2.0 KiB
YAML
elementweb:
|
|
ingress:
|
|
enabled: true
|
|
className: nginx
|
|
annotations:
|
|
cert-manager.io/cluster-issuer: letsencrypt-prod
|
|
external-dns.alpha.kubernetes.io/target: "homelab-tunnel.khuedoan.com"
|
|
external-dns.alpha.kubernetes.io/cloudflare-proxied: "true"
|
|
hosts:
|
|
- host: &frontend_host chat.khuedoan.com
|
|
paths:
|
|
- path: /
|
|
pathType: Prefix
|
|
tls:
|
|
- secretName: element-tls-certificate
|
|
hosts:
|
|
- *frontend_host
|
|
config:
|
|
default:
|
|
base_url: https://matrix.khuedoan.com
|
|
server_name: khuedoan.com
|
|
|
|
dendrite:
|
|
polylith: false
|
|
image:
|
|
name: "locmai/dendrite-monolith:010922" # TODO switch to official image
|
|
pullPolicy: IfNotPresent
|
|
configuration:
|
|
version: 2
|
|
servername: &backend_host matrix.khuedoan.com
|
|
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:
|
|
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
|
|
accessModes:
|
|
- ReadWriteOnce
|
|
size: 5Gi
|
|
ingress:
|
|
enabled: true
|
|
className: nginx
|
|
annotations:
|
|
cert-manager.io/cluster-issuer: letsencrypt-prod
|
|
external-dns.alpha.kubernetes.io/target: "homelab-tunnel.khuedoan.com"
|
|
external-dns.alpha.kubernetes.io/cloudflare-proxied: "true"
|
|
nginx.ingress.kubernetes.io/proxy-body-size: 32m
|
|
hosts:
|
|
- host: *backend_host
|
|
paths:
|
|
- path: /
|
|
pathType: Prefix
|
|
tls:
|
|
- secretName: dendrite-tls-certificate
|
|
hosts:
|
|
- *backend_host
|