helm: add serviceProxyName to conformance values (#3247)

This commit is contained in:
3u13r 2024-07-14 15:49:45 +02:00 committed by GitHub
parent 4f2418ed27
commit 38b72f8294
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -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