37 lines
965 B
YAML
37 lines
965 B
YAML
apiVersion: helm.toolkit.fluxcd.io/v2
|
|
kind: HelmRelease
|
|
metadata:
|
|
name: matrix-stack
|
|
namespace: matrix
|
|
spec:
|
|
interval: 1h
|
|
chart:
|
|
spec:
|
|
chart: ./charts/element-server-suite
|
|
sourceRef:
|
|
kind: GitRepository
|
|
name: ess-community-charts
|
|
namespace: flux-system
|
|
# Hier kommen deine Hostnames und Konfigurationen rein
|
|
values:
|
|
global:
|
|
domainName: axion1337.chat
|
|
postgresql:
|
|
existingSecret: matrix-postgres-auth
|
|
synapse:
|
|
enabled: true
|
|
config:
|
|
serverName: axion1337.chat
|
|
element-web:
|
|
enabled: true
|
|
ingress:
|
|
enabled: true
|
|
className: traefik
|
|
annotations:
|
|
cert-manager.io/cluster-issuer: letsencrypt-prod
|
|
traefik.ingress.kubernetes.io/router.tls: "true"
|
|
hosts:
|
|
- host: axion1337.chat
|
|
paths: [{ path: /, pathType: Prefix }]
|
|
- host: matrix.axion1337.chat
|
|
paths: [{ path: /, pathType: Prefix }] |