Skip to content

Commit

Permalink
cilium: enable bpf masquerading
Browse files Browse the repository at this point in the history
  • Loading branch information
3u13r committed Dec 15, 2023
1 parent 2c50abc commit 25bdffd
Showing 1 changed file with 15 additions and 0 deletions.
15 changes: 15 additions & 0 deletions internal/constellation/helm/values.go
Original file line number Diff line number Diff line change
Expand Up @@ -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",
Expand Down Expand Up @@ -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",
Expand Down Expand Up @@ -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",
Expand Down Expand Up @@ -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",
Expand Down Expand Up @@ -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",
Expand Down

0 comments on commit 25bdffd

Please sign in to comment.