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
Copy file name to clipboardExpand all lines: build/charts/antrea/README.md
+1Lines changed: 1 addition & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -105,6 +105,7 @@ Kubernetes: `>= 1.23.0-0`
105
105
| fqdnCacheMinTTL | int |`0`| fqdnCacheMinTTL helps address the issue of applications caching DNS response IPs beyond the TTL value for the DNS record. It is used to enforce FQDN policy rules, ensuring that resolved IPs are included in datapath rules for as long as the application caches them. Ideally, this value should be set to the maximum caching duration across all applications. |
106
106
| hostGateway | string |`"antrea-gw0"`| Name of the interface antrea-agent will create and use for host <-> Pod communication. |
107
107
| hostNetworkAcceleration.enable | bool |`true`| Enable to accelerate Pod-to-Pod traffic in the Node's host network using nftables flowtable when traffic mode is noEncap or hybrid. |
108
+
| hostNetworkMode | string |`"iptables"`| Determines how antrea-agent implements Node host network netfilter rules required by functionalities and features, using either "iptables" or "nftables". The default value is "iptables". If "nftables" is specified, the NFTablesHostNetworkMode feature gate must be enabled; otherwise, antrea-agent will fail to start. Currently, nftables support is limited to the following features: - AntreaProxy (proxyAll) |
108
109
| image | object |`{}`| Container image to use for Antrea components. DEPRECATED: use agentImage and controllerImage instead. |
109
110
| ipsec.authenticationMode | string |`"psk"`| The authentication mode to use for IPsec. Must be one of "psk" or "cert". |
110
111
| ipsec.csrSigner.autoApprove | bool |`true`| Enable auto approval of Antrea signer for IPsec certificates. |
Copy file name to clipboardExpand all lines: ci/kind/kind-setup.sh
+8-1Lines changed: 8 additions & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -61,7 +61,8 @@ where:
61
61
--service-cidr: specify service clusterip cidr used in kind cluster, kind's default value will be used if empty.
62
62
--encap-mode: inter-node pod traffic encap mode, default is encap.
63
63
--no-proxy: disable Antrea proxy.
64
-
--no-kube-proxy: disable Kube proxy.
64
+
--no-kube-proxy: deprecated. This option is still supported for compatibility, but will be removed. Use '--kube-proxy-mode none' going forward to disable kube-proxy.
65
+
--kube-proxy-mode: specify the kube-proxy mode. Supported values are 'iptables', 'nftables', 'ipvs' and 'none' (to disable kube-proxy).
65
66
--no-kube-node-ipam: disable NodeIPAM in kube-controller-manager.
66
67
--antrea-cni: install Antrea CNI in Kind cluster; by default the cluster is created without a CNI installed.
67
68
--prometheus: create RBAC resources for Prometheus, default is false.
@@ -719,10 +720,16 @@ while [[ $# -gt 0 ]]
719
720
shift
720
721
;;
721
722
--no-kube-proxy)
723
+
echo"WARNING: '--no-kube-proxy' is deprecated. Use '--kube-proxy-mode none' instead."
0 commit comments