From 3c1dec30354a7c7e6cf5eca03cab47dba1e38c45 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?D=C3=A1vid=20Szak=C3=A1llas?= <5807322+dszakallas@users.noreply.github.com> Date: Wed, 15 Apr 2026 18:08:25 +0200 Subject: [PATCH] fix casing of svidStore (#787) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Dávid Szakállas <5807322+dszakallas@users.noreply.github.com> --- charts/spire-lib/templates/_helpers.tpl | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/charts/spire-lib/templates/_helpers.tpl b/charts/spire-lib/templates/_helpers.tpl index 7185d77..e705980 100644 --- a/charts/spire-lib/templates/_helpers.tpl +++ b/charts/spire-lib/templates/_helpers.tpl @@ -202,7 +202,7 @@ Take a copy of the config and merge in .Values.customPlugins and .Values.unsuppo {{- $pluginsToMerge := dict "plugins" dict }} {{- range $type, $val := .root.Values.customPlugins }} {{- if . }} -{{- if eq $type "svidstore" }} +{{- if eq $type "svidStore" }} {{- $_ := set $pluginsToMerge.plugins "SVIDStore" (deepCopy $val) }} {{- else }} {{- $nt := printf "%s%s" (substr 0 1 $type | upper) (substr 1 -1 $type) }} @@ -212,7 +212,7 @@ Take a copy of the config and merge in .Values.customPlugins and .Values.unsuppo {{- end }} {{- range $type, $val := .root.Values.unsupportedBuiltInPlugins }} {{- if . }} -{{- if eq $type "svidstore" }} +{{- if eq $type "svidStore" }} {{- $_ := set $pluginsToMerge.plugins "SVIDStore" (deepCopy $val) }} {{- else }} {{- $nt := printf "%s%s" (substr 0 1 $type | upper) (substr 1 -1 $type) }}