[bitnami/zookeeper] Fix quorum secret generation (#11692)

* Fix quorum secret generation

There was copy/paste error - the quorum password value was tried to be taken from client-auth secret

Signed-off-by: Maciej Próchniak <mpr@touk.pl>

* Bump version

Signed-off-by: Maciej Próchniak <mpr@touk.pl>
This commit is contained in:
Maciej Próchniak
2022-08-10 13:33:15 +02:00
committed by GitHub
parent d9dafd1e4a
commit 824eef1ce8
2 changed files with 3 additions and 3 deletions

View File

@@ -34,8 +34,8 @@ metadata:
{{- end }}
type: Opaque
data:
quorum-learner-password: {{ include "common.secrets.passwords.manage" (dict "secret" (printf "%s-client-auth" (include "common.names.fullname" .)) "key" "quorum-learner-password" "providedValues" (list "auth.quorum.learnerPassword") "context" $) }}
quorum-server-password: {{ include "common.secrets.passwords.manage" (dict "secret" (printf "%s-client-auth" (include "common.names.fullname" .)) "key" "quorum-server-password" "providedValues" (list "auth.quorum.serverPasswords") "context" $) }}
quorum-learner-password: {{ include "common.secrets.passwords.manage" (dict "secret" (printf "%s-quorum-auth" (include "common.names.fullname" .)) "key" "quorum-learner-password" "providedValues" (list "auth.quorum.learnerPassword") "context" $) }}
quorum-server-password: {{ include "common.secrets.passwords.manage" (dict "secret" (printf "%s-quorum-auth" (include "common.names.fullname" .)) "key" "quorum-server-password" "providedValues" (list "auth.quorum.serverPasswords") "context" $) }}
{{- end }}
{{- if (include "zookeeper.client.createTlsPasswordsSecret" .) }}
---