From 7bf2233d4ab2f197de500308e8cdaa6aeef91502 Mon Sep 17 00:00:00 2001 From: Kjeld Schouten Date: Sun, 6 Jul 2025 10:17:32 +0200 Subject: [PATCH] fix(common): correct typo on gluten outbound subnets Signed-off-by: Kjeld Schouten --- charts/library/common/templates/addons/_gluetun.tpl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/charts/library/common/templates/addons/_gluetun.tpl b/charts/library/common/templates/addons/_gluetun.tpl index 0a6deb29a41..860fcfd3fd1 100644 --- a/charts/library/common/templates/addons/_gluetun.tpl +++ b/charts/library/common/templates/addons/_gluetun.tpl @@ -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) -}}