├── .gitignore ├── .helmignore ├── Chart.lock ├── Chart.yaml ├── LICENSE ├── README.md ├── templates ├── NOTES.txt ├── _helpers.tpl ├── bridge-discord │ ├── _helpers.tpl │ ├── configmap.yaml │ ├── data-pvc.yaml │ ├── deployment.yaml │ ├── network-policy.yaml │ └── service.yaml ├── bridge-irc │ ├── _config.yaml │ ├── _helpers.tpl │ ├── configmap.yaml │ ├── data-pvc.yaml │ ├── deployment.yaml │ ├── network-policy.yaml │ └── service.yaml ├── bridge-whatsapp │ ├── configmap.yaml │ ├── data-pvc.yaml │ ├── deployment.yaml │ ├── network-policy.yaml │ └── service.yaml ├── bridges-pvc.yaml ├── coturn │ ├── _helpers.tpl │ ├── configmap.yaml │ ├── deployment.yaml │ ├── network-policy.yaml │ └── service.yaml ├── exim │ ├── deployment.yaml │ ├── network-policy.yaml │ └── service.yaml ├── ingress.yaml ├── postgresql │ ├── initdb-configmap.yaml │ └── network-policy.yaml ├── riot │ ├── configmap.yaml │ ├── deployment.yaml │ ├── network-policy.yaml │ └── service.yaml └── synapse │ ├── _homeserver.yaml │ ├── configmap.yaml │ ├── deployment.yaml │ ├── federation-svc.yaml │ ├── media-pvc.yaml │ ├── network-policy.yaml │ ├── service.yaml │ └── signing-key-pvc.yaml └── values.yaml /.gitignore: -------------------------------------------------------------------------------- 1 | .idea/ 2 | charts/ 3 | -------------------------------------------------------------------------------- /.helmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typokign/matrix-chart/HEAD/.helmignore -------------------------------------------------------------------------------- /Chart.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typokign/matrix-chart/HEAD/Chart.lock -------------------------------------------------------------------------------- /Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typokign/matrix-chart/HEAD/Chart.yaml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typokign/matrix-chart/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typokign/matrix-chart/HEAD/README.md -------------------------------------------------------------------------------- /templates/NOTES.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typokign/matrix-chart/HEAD/templates/NOTES.txt -------------------------------------------------------------------------------- /templates/_helpers.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typokign/matrix-chart/HEAD/templates/_helpers.tpl -------------------------------------------------------------------------------- /templates/bridge-discord/_helpers.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typokign/matrix-chart/HEAD/templates/bridge-discord/_helpers.tpl -------------------------------------------------------------------------------- /templates/bridge-discord/configmap.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typokign/matrix-chart/HEAD/templates/bridge-discord/configmap.yaml -------------------------------------------------------------------------------- /templates/bridge-discord/data-pvc.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typokign/matrix-chart/HEAD/templates/bridge-discord/data-pvc.yaml -------------------------------------------------------------------------------- /templates/bridge-discord/deployment.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typokign/matrix-chart/HEAD/templates/bridge-discord/deployment.yaml -------------------------------------------------------------------------------- /templates/bridge-discord/network-policy.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typokign/matrix-chart/HEAD/templates/bridge-discord/network-policy.yaml -------------------------------------------------------------------------------- /templates/bridge-discord/service.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typokign/matrix-chart/HEAD/templates/bridge-discord/service.yaml -------------------------------------------------------------------------------- /templates/bridge-irc/_config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typokign/matrix-chart/HEAD/templates/bridge-irc/_config.yaml -------------------------------------------------------------------------------- /templates/bridge-irc/_helpers.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typokign/matrix-chart/HEAD/templates/bridge-irc/_helpers.tpl -------------------------------------------------------------------------------- /templates/bridge-irc/configmap.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typokign/matrix-chart/HEAD/templates/bridge-irc/configmap.yaml -------------------------------------------------------------------------------- /templates/bridge-irc/data-pvc.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typokign/matrix-chart/HEAD/templates/bridge-irc/data-pvc.yaml -------------------------------------------------------------------------------- /templates/bridge-irc/deployment.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typokign/matrix-chart/HEAD/templates/bridge-irc/deployment.yaml -------------------------------------------------------------------------------- /templates/bridge-irc/network-policy.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typokign/matrix-chart/HEAD/templates/bridge-irc/network-policy.yaml -------------------------------------------------------------------------------- /templates/bridge-irc/service.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typokign/matrix-chart/HEAD/templates/bridge-irc/service.yaml -------------------------------------------------------------------------------- /templates/bridge-whatsapp/configmap.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typokign/matrix-chart/HEAD/templates/bridge-whatsapp/configmap.yaml -------------------------------------------------------------------------------- /templates/bridge-whatsapp/data-pvc.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typokign/matrix-chart/HEAD/templates/bridge-whatsapp/data-pvc.yaml -------------------------------------------------------------------------------- /templates/bridge-whatsapp/deployment.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typokign/matrix-chart/HEAD/templates/bridge-whatsapp/deployment.yaml -------------------------------------------------------------------------------- /templates/bridge-whatsapp/network-policy.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typokign/matrix-chart/HEAD/templates/bridge-whatsapp/network-policy.yaml -------------------------------------------------------------------------------- /templates/bridge-whatsapp/service.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typokign/matrix-chart/HEAD/templates/bridge-whatsapp/service.yaml -------------------------------------------------------------------------------- /templates/bridges-pvc.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typokign/matrix-chart/HEAD/templates/bridges-pvc.yaml -------------------------------------------------------------------------------- /templates/coturn/_helpers.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typokign/matrix-chart/HEAD/templates/coturn/_helpers.tpl -------------------------------------------------------------------------------- /templates/coturn/configmap.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typokign/matrix-chart/HEAD/templates/coturn/configmap.yaml -------------------------------------------------------------------------------- /templates/coturn/deployment.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typokign/matrix-chart/HEAD/templates/coturn/deployment.yaml -------------------------------------------------------------------------------- /templates/coturn/network-policy.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typokign/matrix-chart/HEAD/templates/coturn/network-policy.yaml -------------------------------------------------------------------------------- /templates/coturn/service.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typokign/matrix-chart/HEAD/templates/coturn/service.yaml -------------------------------------------------------------------------------- /templates/exim/deployment.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typokign/matrix-chart/HEAD/templates/exim/deployment.yaml -------------------------------------------------------------------------------- /templates/exim/network-policy.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typokign/matrix-chart/HEAD/templates/exim/network-policy.yaml -------------------------------------------------------------------------------- /templates/exim/service.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typokign/matrix-chart/HEAD/templates/exim/service.yaml -------------------------------------------------------------------------------- /templates/ingress.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typokign/matrix-chart/HEAD/templates/ingress.yaml -------------------------------------------------------------------------------- /templates/postgresql/initdb-configmap.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typokign/matrix-chart/HEAD/templates/postgresql/initdb-configmap.yaml -------------------------------------------------------------------------------- /templates/postgresql/network-policy.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typokign/matrix-chart/HEAD/templates/postgresql/network-policy.yaml -------------------------------------------------------------------------------- /templates/riot/configmap.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typokign/matrix-chart/HEAD/templates/riot/configmap.yaml -------------------------------------------------------------------------------- /templates/riot/deployment.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typokign/matrix-chart/HEAD/templates/riot/deployment.yaml -------------------------------------------------------------------------------- /templates/riot/network-policy.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typokign/matrix-chart/HEAD/templates/riot/network-policy.yaml -------------------------------------------------------------------------------- /templates/riot/service.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typokign/matrix-chart/HEAD/templates/riot/service.yaml -------------------------------------------------------------------------------- /templates/synapse/_homeserver.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typokign/matrix-chart/HEAD/templates/synapse/_homeserver.yaml -------------------------------------------------------------------------------- /templates/synapse/configmap.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typokign/matrix-chart/HEAD/templates/synapse/configmap.yaml -------------------------------------------------------------------------------- /templates/synapse/deployment.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typokign/matrix-chart/HEAD/templates/synapse/deployment.yaml -------------------------------------------------------------------------------- /templates/synapse/federation-svc.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typokign/matrix-chart/HEAD/templates/synapse/federation-svc.yaml -------------------------------------------------------------------------------- /templates/synapse/media-pvc.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typokign/matrix-chart/HEAD/templates/synapse/media-pvc.yaml -------------------------------------------------------------------------------- /templates/synapse/network-policy.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typokign/matrix-chart/HEAD/templates/synapse/network-policy.yaml -------------------------------------------------------------------------------- /templates/synapse/service.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typokign/matrix-chart/HEAD/templates/synapse/service.yaml -------------------------------------------------------------------------------- /templates/synapse/signing-key-pvc.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typokign/matrix-chart/HEAD/templates/synapse/signing-key-pvc.yaml -------------------------------------------------------------------------------- /values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typokign/matrix-chart/HEAD/values.yaml --------------------------------------------------------------------------------