You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The nftables kube-proxy backend is planned to one day be the default backend for kube-proxy. Support was added in 1.29
Uppon adding --feature-gates=NFTablesProxyMode=true --proxy-mode=nftables to iptables it to add any rules:
│ /dev/stdin:892:87-100: Error: Could not process rule: No such file or directory
│ add rule ip kube-proxy external-3BXM2ZZ4-haproxy/external-kubernetes-ingress/tcp/http fib saddr type local jump mark-for-masquerade comment "masquerade local traffic"
│ ^^^^^^^^^^^^^^
│ /dev/stdin:893:87-100: Error: Could not process rule: No such file or directory
I believe this is due to these unset kernel variables:
CONFIG_NFT_FIB_IPV4=m
CONFIG_NFT_FIB_IPV6=m
N.B. nftables masquerade was recently added to `flannel.
Required for `nftables` support in `kube-proxy`.
Fixessiderolabs#951
Signed-off-by: Andrey Smirnov <[email protected]>
(cherry picked from commit 6775002)
The
nftables
kube-proxy backend is planned to one day be the default backend for kube-proxy. Support was added in 1.29Uppon adding
--feature-gates=NFTablesProxyMode=true --proxy-mode=nftables
to iptables it to add any rules:I believe this is due to these unset kernel variables:
N.B. nftables masquerade was recently added to `flannel.
You can read more about why and what in the KEP: https://github.com/kubernetes/enhancements/blob/master/keps/sig-network/3866-nftables-proxy/README.md
The text was updated successfully, but these errors were encountered: