[bitnami/rabbitmq] Set full hostname in rabbitmq svcbind secret (#17056)

Signed-off-by: Dmytro Bondar <git@bonddim.com>
This commit is contained in:
Dmytro Bondar
2023-06-13 11:00:59 +02:00
committed by GitHub
parent cbcb009836
commit 8dfaf4d8b7
2 changed files with 2 additions and 2 deletions

View File

@@ -22,4 +22,4 @@ maintainers:
name: rabbitmq
sources:
- https://github.com/bitnami/charts/tree/main/bitnami/rabbitmq
version: 12.0.0
version: 12.0.1

View File

@@ -1,4 +1,4 @@
{{- $host := include "common.names.fullname" . }}
{{- $host := printf "%s.%s.svc.%s" (include "common.names.fullname" .) (include "common.names.namespace" .) .Values.clusterDomain }}
{{- $port := print .Values.service.ports.amqp }}
{{- $user := print .Values.auth.username }}
{{- $password := include "common.secrets.passwords.manage" (dict "secret" (include "rabbitmq.secretPasswordName" .) "key" "rabbitmq-password" "length" 16 "providedValues" (list "auth.password") "context" $) | trimAll "\"" | b64dec }}