88 lines
2.1 KiB
YAML
88 lines
2.1 KiB
YAML
# yaml-language-server: $schema=https://raw.githubusercontent.com/bjw-s/helm-charts/main/charts/other/app-template/schemas/helmrelease-helm-v2beta2.schema.json
|
|
apiVersion: helm.toolkit.fluxcd.io/v2
|
|
kind: HelmRelease
|
|
metadata:
|
|
name: dendrite
|
|
namespace: default
|
|
spec:
|
|
interval: 5m
|
|
chart:
|
|
spec:
|
|
chart: app-template
|
|
version: 3.1.0
|
|
sourceRef:
|
|
kind: HelmRepository
|
|
name: bjws-charts
|
|
namespace: flux-system
|
|
|
|
values:
|
|
controllers:
|
|
main:
|
|
# pod:
|
|
# securityContext:
|
|
# runAsNonRoot: true
|
|
# runAsUser: 10000
|
|
# runAsGroup: 10000
|
|
# fsGroup: 10000
|
|
# fsGroupChangePolicy: OnRootMismatch
|
|
|
|
containers:
|
|
main:
|
|
image:
|
|
repository: matrixdotorg/dendrite-monolith
|
|
tag: v0.13.7
|
|
|
|
service:
|
|
app:
|
|
controller: main
|
|
|
|
ports:
|
|
http:
|
|
port: 8008
|
|
|
|
ingress:
|
|
main:
|
|
annotations:
|
|
cert-manager.io/cluster-issuer: letsencrypt-production
|
|
traefik.ingress.kubernetes.io/router.entrypoints: websecure
|
|
|
|
hosts:
|
|
- host: "matrix.${SECRET_NEW_DOMAIN}"
|
|
paths:
|
|
- path: /
|
|
service:
|
|
identifier: app
|
|
port: http
|
|
- host: "${SECRET_NEW_DOMAIN}"
|
|
paths:
|
|
- path: /_matrix
|
|
service:
|
|
identifier: app
|
|
port: http
|
|
|
|
persistence:
|
|
config:
|
|
type: configMap
|
|
# mounts 'matrix_key.pem' and 'config.yaml'
|
|
name: dendrite-config
|
|
defaultMode: 0664
|
|
globalMounts:
|
|
- path: /etc/dendrite
|
|
|
|
searchindex:
|
|
type: hostPath
|
|
hostPath: /mnt/MainPool/Kubernetes/matrix/searchindex
|
|
globalMounts:
|
|
- path: /var/dendrite/searchindex
|
|
|
|
media-store:
|
|
type: hostPath
|
|
hostPath: /mnt/MainPool/Kubernetes/matrix/media
|
|
globalMounts:
|
|
- path: /var/dendrite/media_store
|
|
|
|
jetstream:
|
|
type: hostPath
|
|
hostPath: /mnt/MainPool/Kubernetes/matrix/jetstream
|
|
globalMounts:
|
|
- path: /var/dendrite/jetstream |