mirror of
https://github.com/1f349/dendrite.git
synced 2025-02-16 19:38:35 +00:00
Fixes some Helm templating issues when setting up a deployment with an existing database / signing keys. - Allows for `.Values.postgresql.enabled: false` as long as `.Values.global.dendrite_config.database.connection_string` is defined - Allows for '.Values.signing_key.create: false' if `.Values.signing_key.existingSecret` is set Also fixes an error in the template resulting in profiling port not being set correctly: ``` Error: template: dendrite-meta/charts/dendrite/templates/deployment.yaml:60:35: executing "dendrite-meta/charts/dendrite/templates/deployment.yaml" at <$.Values.global.profiling.port>: nil pointer evaluating interface {}.port ``` ### Pull Request Checklist <!-- Please read https://matrix-org.github.io/dendrite/development/contributing before submitting your pull request --> * [x] I have added Go unit tests or [Complement integration tests](https://github.com/matrix-org/complement) for this PR _or_ I have justified why this PR doesn't need tests - Helm template fixes, no golang changes * [x] Pull request includes a [sign off below using a legally identifiable name](https://matrix-org.github.io/dendrite/development/contributing#sign-off) _or_ I have already signed off privately Signed-off-by: Rhea Danzey <rdanzey@element.io> --------- Signed-off-by: Rhea Danzey <rdanzey@element.io> Co-authored-by: Till Faelligen <2353100+S7evinK@users.noreply.github.com>
20 lines
414 B
YAML
20 lines
414 B
YAML
apiVersion: v2
|
|
name: dendrite
|
|
version: "0.12.1"
|
|
appVersion: "0.12.0"
|
|
description: Dendrite Matrix Homeserver
|
|
type: application
|
|
keywords:
|
|
- matrix
|
|
- chat
|
|
- homeserver
|
|
- dendrite
|
|
home: https://github.com/matrix-org/dendrite
|
|
sources:
|
|
- https://github.com/matrix-org/dendrite
|
|
dependencies:
|
|
- name: postgresql
|
|
version: 12.1.7
|
|
repository: https://charts.bitnami.com/bitnami
|
|
condition: postgresql.enabled
|