From 25bdffdf33d192646cad4ccad618831c1e45c8bf Mon Sep 17 00:00:00 2001 From: Leonard Cohnen Date: Fri, 15 Dec 2023 08:48:46 +0100 Subject: [PATCH] cilium: enable bpf masquerading --- internal/constellation/helm/values.go | 15 +++++++++++++++ 1 file changed, 15 insertions(+) diff --git a/internal/constellation/helm/values.go b/internal/constellation/helm/values.go index 60913c2f54..d2d5d93f61 100644 --- a/internal/constellation/helm/values.go +++ b/internal/constellation/helm/values.go @@ -49,6 +49,9 @@ var ciliumVals = map[string]map[string]any{ "useDigest": true, }, }, + "bpf": map[string]any{ + "masquerade": true, + }, "kubeProxyReplacement": "strict", "enableCiliumEndpointSlice": true, "kubeProxyReplacementHealthzBindAddr": "0.0.0.0:10256", @@ -92,6 +95,9 @@ var ciliumVals = map[string]map[string]any{ "useDigest": true, }, }, + "bpf": map[string]any{ + "masquerade": true, + }, "egressMasqueradeInterfaces": "eth0", "enableIPv4Masquerade": true, "kubeProxyReplacement": "strict", @@ -133,6 +139,9 @@ var ciliumVals = map[string]map[string]any{ "ipam": map[string]any{ "mode": "kubernetes", }, + "bpf": map[string]any{ + "masquerade": true, + }, "kubeProxyReplacement": "strict", "enableCiliumEndpointSlice": true, "kubeProxyReplacementHealthzBindAddr": "0.0.0.0:10256", @@ -175,6 +184,9 @@ var ciliumVals = map[string]map[string]any{ "useDigest": true, }, }, + "bpf": map[string]any{ + "masquerade": true, + }, "kubeProxyReplacement": "strict", "enableCiliumEndpointSlice": true, "kubeProxyReplacementHealthzBindAddr": "0.0.0.0:10256", @@ -215,6 +227,9 @@ var ciliumVals = map[string]map[string]any{ }, }, }, + "bpf": map[string]any{ + "masquerade": true, + }, "kubeProxyReplacement": "strict", "enableCiliumEndpointSlice": true, "kubeProxyReplacementHealthzBindAddr": "0.0.0.0:10256",