From a2e410f8b691190be62b93e802a2ecec00a029a8 Mon Sep 17 00:00:00 2001 From: Philip Zingmark Date: Tue, 17 Mar 2026 18:23:04 +0100 Subject: [PATCH] Fix helm existing configmap volume ref in workload --- script/helm/garage/templates/workload.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/script/helm/garage/templates/workload.yaml b/script/helm/garage/templates/workload.yaml index 81c8616f..21c6462d 100644 --- a/script/helm/garage/templates/workload.yaml +++ b/script/helm/garage/templates/workload.yaml @@ -94,7 +94,7 @@ spec: volumes: - name: configmap configMap: - name: {{ include "garage.fullname" . }}-config + name: {{ if .Values.garage.existingConfigMap }}{{ .Values.garage.existingConfigMap }}{{ else }}{{ include "garage.fullname" . }}-config{{ end }} - name: etc emptyDir: {} {{- if .Values.persistence.enabled }}