From 851289f2f6eff642c3e511b889ae14972c308121 Mon Sep 17 00:00:00 2001 From: Matthew B <106352182+artntek@users.noreply.github.com> Date: Mon, 11 Dec 2023 15:20:04 -0800 Subject: [PATCH] bugfix - incorrect auto-gen name --- helm/templates/_helpers.tpl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/helm/templates/_helpers.tpl b/helm/templates/_helpers.tpl index 66962069..7cfcd096 100644 --- a/helm/templates/_helpers.tpl +++ b/helm/templates/_helpers.tpl @@ -84,7 +84,7 @@ Either use the value set in .Values.persistence.claimName, or if blank, autopopu {{- define "idxworker.shared.claimName" -}} {{- $claimName := .Values.persistence.claimName }} {{- if not $claimName }} -{{- $claimName = .Release.Name }}-metacat-{{- .Release.Name }}-0 +{{- $claimName = printf "%s-metacat-%s-0" .Release.Name .Release.Name }} {{- end }} {{- $claimName }} {{- end }}