From 3dabb4a70c85d29e2ebf19fd944ccfaa38b6e2a1 Mon Sep 17 00:00:00 2001 From: Stefan Brand Date: Fri, 5 Apr 2024 09:07:11 +0200 Subject: [PATCH] fix: use correct secret name for redis password --- charts/nautobot/templates/_helpers.tpl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/charts/nautobot/templates/_helpers.tpl b/charts/nautobot/templates/_helpers.tpl index 5a8f3892..8c1e4a58 100644 --- a/charts/nautobot/templates/_helpers.tpl +++ b/charts/nautobot/templates/_helpers.tpl @@ -270,7 +270,7 @@ We truncate at 63 chars because some Kubernetes name fields are limited to this {{- else if .Values.redis.auth.existingSecret -}} {{- .Values.redis.auth.existingSecret -}} {{- else -}} - {{- printf "nautobot-redis" -}} + {{- printf "%s-redis" (include "common.names.fullname" .) -}} {{- end -}} {{- end -}}