From 38b72f82943a6d331422308e4a96046ed900ed1d Mon Sep 17 00:00:00 2001 From: 3u13r Date: Sun, 14 Jul 2024 15:49:45 +0200 Subject: [PATCH] helm: add serviceProxyName to conformance values (#3247) --- internal/constellation/helm/overrides.go | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/internal/constellation/helm/overrides.go b/internal/constellation/helm/overrides.go index c80c8aeb75..deb515909b 100644 --- a/internal/constellation/helm/overrides.go +++ b/internal/constellation/helm/overrides.go @@ -86,7 +86,6 @@ func extraCiliumValues(provider cloudprovider.Provider, conformanceMode bool, ou // Since there should always be workarounds, we only support this mode to // pass the K8s conformance tests. It is not supported to switch to or from // this mode after Constellation has been initialized. - // This only works for the K8s conformance tests up to K8s 1.28. if conformanceMode { extraVals["kubeProxyReplacementHealthzBindAddr"] = "" extraVals["kubeProxyReplacement"] = "false" @@ -100,6 +99,9 @@ func extraCiliumValues(provider cloudprovider.Provider, conformanceMode bool, ou extraVals["bpf"] = map[string]any{ "masquerade": false, } + extraVals["k8s"] = map[string]any{ + "serviceProxyName": "cilium", + } } return extraVals