Skip to content

Commit d2f89da

Browse files
Merge pull request #279672 from schaffererin/userfeedback273629
Added additional command option for enabling app routing on existing cluster
2 parents 5db9950 + 69164d5 commit d2f89da

File tree

1 file changed

+5
-1
lines changed

1 file changed

+5
-1
lines changed

articles/aks/app-routing.md

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -63,10 +63,14 @@ az aks create \
6363

6464
### Enable on an existing cluster
6565

66-
To enable application routing on an existing cluster, use the [`az aks approuting enable`][az-aks-approuting-enable] command.
66+
To enable application routing on an existing cluster, use the [`az aks approuting enable`][az-aks-approuting-enable] or the [`az aks enable-addons`][az-aks-enable-addons] command with the `--addons` parameter set to `http_application_routing`.
6767

6868
```azurecli-interactive
69+
# az aks approuting enable
6970
az aks approuting enable --resource-group <ResourceGroupName> --name <ClusterName>
71+
72+
# az aks enable-addons
73+
az aks enable-addons --resource-group <ResourceGroupName> --name <ClusterName> --addons http_application_routing
7074
```
7175

7276
# [Open Service Mesh (OSM) (retired)](#tab/with-osm)

0 commit comments

Comments
 (0)