From 8adfd7be665a616ee9b8124c41b31844ca10f81b Mon Sep 17 00:00:00 2001 From: Leonard Cohnen Date: Thu, 11 Jul 2024 11:32:54 +0200 Subject: [PATCH] helm: add serviceProxyName to conformance values --- 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 2ef690935..c1e1d6c92 100644 --- a/internal/constellation/helm/overrides.go +++ b/internal/constellation/helm/overrides.go @@ -73,7 +73,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" @@ -87,6 +86,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