Skip to content

Commit

Permalink
helm: add serviceProxyName to conformance values (#3247)
Browse files Browse the repository at this point in the history
  • Loading branch information
3u13r authored Jul 14, 2024
1 parent 4f2418e commit 38b72f8
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion internal/constellation/helm/overrides.go
Original file line number Diff line number Diff line change
Expand Up @@ -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"
Expand All @@ -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
Expand Down

0 comments on commit 38b72f8

Please sign in to comment.