fix(common): correct typo on gluten outbound subnets

Signed-off-by: Kjeld Schouten <info@kjeldschouten.nl>
This commit is contained in:
Kjeld Schouten
2025-07-06 10:17:32 +02:00
committed by GitHub
parent 3b2193db25
commit 7bf2233d4a
@@ -11,7 +11,7 @@ It will include / inject the required templates based on the given values.
{{- $fw := $glue.container.env.FIREWALL -}}
{{- if (eq $fw "on") -}}
{{- $nets := $glue.container.env.FIREWALL_OUTBOUT_SUBNETS | splitList "," -}}
{{- $nets := $glue.container.env.FIREWALL_OUTBOUND_SUBNETS | splitList "," -}}
{{- $nets = mustAppend ($nets $.Values.chartContext.podCIDR $.Values.chartContext.svcCIDR) | mustUniq -}}
{{- $_ := set $glue.container.env "FIREWALL_OUTBOUND_SUBNETS" (join "," $nets) -}}