Skip to content
Snippets Groups Projects
Unverified Commit 658f07e7 authored by Varac's avatar Varac
Browse files

Dont use auth.existingSecret for mongo auth

parent 09f0b7be
No related branches found
No related tags found
No related merge requests found
......@@ -98,7 +98,14 @@ spec:
auth:
username: wekan
database: wekan
existingSecret: oas-wekan-variables
# Unfortunatly we can't use existingSecret directly here because
# kustomize-controller doesn't allow hyphens/dashes in variable
# substitution names, while mongodb requires hyphens/dashes in the
# var names. See https://github.com/fluxcd/kustomize-controller/issues/395
# for more details.
# existingSecret: oas-wekan-variables
rootPassword: ${mongodb_root_password}
password: ${mongodb_password}
podAnnotations:
# Let the backup system include rocketchat data stored in mongodb.
backup.velero.io/backup-volumes: "datadir"
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment