We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Ideally we can set each component of the connection string allowing to read these from configmaps/secrets in k8s.
eg externalDB: dbUsername: "foo" dbPassword: "bar" # or fromExternalSecret .... Alternatively these could also reference an external secret like many other helm charts - https://github.com/immich-app/immich-charts/blob/4b3e1d4d0b15a30db33bc76fb847b89d0f8bd6f0/charts/immich/values.yaml#L12
externalDB: dbUsername: "foo" dbPassword: "bar" # or fromExternalSecret ....
Relevant lines: https://github.com/mattermost/mattermost-helm/blob/0ce91320ff8ec9f79ae07bc64ea700553cc811f2/charts/mattermost-team-edition/values.yaml#L94C1-L96C30
The text was updated successfully, but these errors were encountered:
Tried to close this using cloudnative-pg's created secrets
externalDB: enabled: true externalDriverType: postgres externalConnectionString: valuesFrom: secretKeyRef: name: mattermost-pgsql-app key: uri
Problem remains open as the part of the uri is embedded in matter most's configmap - so the component "postgres://" shows up twice.
Ideally some way to configure each component of the database would solve this.
Sorry, something went wrong.
No branches or pull requests
Ideally we can set each component of the connection string allowing to read these from configmaps/secrets in k8s.
eg
externalDB: dbUsername: "foo" dbPassword: "bar" # or fromExternalSecret ....
Alternatively these could also reference an external secret like many other helm charts -
https://github.com/immich-app/immich-charts/blob/4b3e1d4d0b15a30db33bc76fb847b89d0f8bd6f0/charts/immich/values.yaml#L12
Relevant lines:
https://github.com/mattermost/mattermost-helm/blob/0ce91320ff8ec9f79ae07bc64ea700553cc811f2/charts/mattermost-team-edition/values.yaml#L94C1-L96C30
The text was updated successfully, but these errors were encountered: