Skip to content

Commit d845221

Browse files
Merge pull request #233733 from wedaly/cilium-doc-improvements
Fix broken link and inconsistent CLI flags in Cilium docs
2 parents b94e85c + 2917a80 commit d845221

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

articles/aks/azure-cni-powered-by-cilium.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@ Azure CNI powered by Cilium currently has the following limitations:
5252

5353
## Prerequisites
5454

55-
* 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 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).
5656
* Azure CLI with aks-preview extension 0.5.135 or later.
5757
* If using ARM templates or the REST API, the AKS API version must be 2022-09-02-preview or later.
5858

@@ -113,19 +113,19 @@ az network vnet subnet create -g <resourceGroupName> --vnet-name <vnetName> --na
113113
az network vnet subnet create -g <resourceGroupName> --vnet-name <vnetName> --name podsubnet --address-prefixes <address prefix, example: 10.241.0.0/16> -o none
114114
```
115115

116-
Create the cluster using `--network-dataplane=cilium`:
116+
Create the cluster using `--network-dataplane cilium`:
117117

118118
```azurecli-interactive
119119
az aks create -n <clusterName> -g <resourceGroupName> -l <location> \
120120
--max-pods 250 \
121121
--network-plugin azure \
122122
--vnet-subnet-id /subscriptions/<subscriptionId>/resourceGroups/<resourceGroupName>/providers/Microsoft.Network/virtualNetworks/<vnetName>/subnets/nodesubnet \
123123
--pod-subnet-id /subscriptions/<subscriptionId>/resourceGroups/<resourceGroupName>/providers/Microsoft.Network/virtualNetworks/<vnetName>/subnets/podsubnet \
124-
--network-dataplane=cilium
124+
--network-dataplane cilium
125125
```
126126

127127
> [!NOTE]
128-
> The `--network-dataplane=cilium` flag replaces the deprecated `--enable-ebpf-dataplane` flag used in earlier versions of the aks-preview CLI extension.
128+
> The `--network-dataplane cilium` flag replaces the deprecated `--enable-ebpf-dataplane` flag used in earlier versions of the aks-preview CLI extension.
129129
130130
### Option 2: Assign IP addresses from an overlay network
131131

@@ -136,7 +136,7 @@ az aks create -n <clusterName> -g <resourceGroupName> -l <location> \
136136
--network-plugin azure \
137137
--network-plugin-mode overlay \
138138
--pod-cidr 192.168.0.0/16 \
139-
--network-dataplane=cilium
139+
--network-dataplane cilium
140140
```
141141

142142
## Frequently asked questions

0 commit comments

Comments
 (0)