Document the existence of nftables as a kube-proxy mode.

Kubernetes-commit: 49080bf02a10eab38d8a39002427a5800b80631d
This commit is contained in:
Dan Winship 2024-11-08 08:52:25 -05:00 committed by Kubernetes Publisher
parent 0f9b29122a
commit 0997395d3d
1 changed files with 3 additions and 3 deletions

View File

@ -250,10 +250,10 @@ type KubeProxyConfiguration struct {
// ProxyMode represents modes used by the Kubernetes proxy server.
//
// Currently, two modes of proxy are available on Linux platforms: 'iptables' and 'ipvs'.
// One mode of proxy is available on Windows platforms: 'kernelspace'.
// Three modes of proxy are available on Linux platforms: `iptables`, `ipvs`, and
// `nftables`. One mode of proxy is available on Windows platforms: `kernelspace`.
//
// If the proxy mode is unspecified, the best-available proxy mode will be used (currently this
// If the proxy mode is unspecified, a default proxy mode will be used (currently this
// is `iptables` on Linux and `kernelspace` on Windows). If the selected proxy mode cannot be
// used (due to lack of kernel support, missing userspace components, etc) then kube-proxy
// will exit with an error.