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
Update Azure CNI Powered by Cilium to use --network-dataplane
In AKS API version 2023-02-02preview the ebpfDataplane field
was replaced with networkDataplane as part of promoting
Cilium dataplane to the stable API.
Update the documentation to reflect the changes to the API
and CLI from "ebpfDataplane" to "networkDataplane"
Copy file name to clipboardExpand all lines: articles/aks/azure-cni-powered-by-cilium.md
+10-4Lines changed: 10 additions & 4 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -52,9 +52,12 @@ Azure CNI powered by Cilium currently has the following limitations:
52
52
## Prerequisites
53
53
54
54
* Azure CLI version 2.41.0 or later. Run `az --version` to see the currently installed version. If you need to install or upgrade, see [Install Azure CLI][/cli/azure/install-azure-cli].
55
-
* Azure CLI with aks-preview extension 0.5.109 or later.
55
+
* Azure CLI with aks-preview extension 0.5.135 or later.
56
56
* If using ARM templates or the REST API, the AKS API version must be 2022-09-02-preview or later.
57
57
58
+
> [!NOTE]
59
+
> Previous AKS API versions (2022-09-02preview to 2023-01-02preview) used the field [`networkProfile.ebpfDataplane=cilium`](https://github.com/Azure/azure-rest-api-specs/blob/06dbe269f7d9c709cc225c92358b38c3c2b74d60/specification/containerservice/resource-manager/Microsoft.ContainerService/aks/preview/2022-09-02-preview/managedClusters.json#L6939-L6955). AKS API versions since 2023-02-02preview use the field [`networkProfile.networkDataplane=cilium`](https://github.com/Azure/azure-rest-api-specs/blob/06dbe269f7d9c709cc225c92358b38c3c2b74d60/specification/containerservice/resource-manager/Microsoft.ContainerService/aks/preview/2023-02-02-preview/managedClusters.json#L7152-L7173) to enable Azure CNI Powered by Cilium.
60
+
58
61
## Install the aks-preview Azure CLI extension
59
62
60
63
[!INCLUDE [preview features callout](includes/preview/preview-callout.md)]
> The `--network-dataplane=cilium` flag replaces the deprecated `--enable-ebpf-dataplane` flag used in earlier versions of the aks-preview CLI extension.
128
+
123
129
### Option 2: Assign IP addresses from an overlay network
124
130
125
131
Run this commands to create a cluster with an overlay network and Cilium. Replace the values for `<clusterName>`, `<resourceGroupName>`, and `<location>`:
@@ -129,7 +135,7 @@ az aks create -n <clusterName> -g <resourceGroupName> -l <location> \
0 commit comments