-
Notifications
You must be signed in to change notification settings - Fork 3.4k
[AKS] Update network plugin defaults and long summary #31516
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change | ||||||||
|---|---|---|---|---|---|---|---|---|---|---|
|
|
@@ -234,13 +234,13 @@ | |||||||||
| - name: --network-plugin | ||||||||||
| type: string | ||||||||||
| short-summary: The Kubernetes network plugin to use. | ||||||||||
| long-summary: Specify "azure" for routable pod IPs from VNET, "kubenet" for non-routable pod IPs with an overlay network, or "none" for no networking configured. Defaults to "kubenet". | ||||||||||
| long-summary: Specify "azure" for highly scalable networking, "kubenet" for IP assignment from subnet NAT-based routing, or "none" for no networking configured. Defaults to "azure". | ||||||||||
| - name: --network-plugin-mode | ||||||||||
| type: string | ||||||||||
| short-summary: The network plugin mode to use. | ||||||||||
| long-summary: | | ||||||||||
| Used to control the mode the network plugin should operate in. For example, "overlay" used with | ||||||||||
| --network-plugin=azure will use an overlay network (non-VNET IPs) for pods in the cluster. | ||||||||||
| Used to control the mode the network plugin should operate in. Defaults to "overlay". If not specified with "azure" as | ||||||||||
| network plugin, pods are given routable IPs from VNET. | ||||||||||
|
Comment on lines
+242
to
+243
|
||||||||||
| Used to control the mode the network plugin should operate in. Defaults to "overlay". If not specified with "azure" as | |
| network plugin, pods are given routable IPs from VNET. | |
| Only applies when `--network-plugin=azure`. Used to control the mode the network plugin should operate in. Defaults to "overlay" mode (an overlay network). | |
| With `--network-plugin=azure`, pods are given routable IPs from the VNET. With `--network-plugin=kubenet`, pods always use NAT-based routing and receive non-routable IPs. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
[nitpick] The phrase "highly scalable networking" is vague in this context. Consider replacing it with a more descriptive explanation, for example: "Specify "azure" to use Azure CNI (pod IPs assigned directly from the VNet), "kubenet" for NAT-based routing from the subnet, or "none" for no networking. Defaults to "azure"."