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: articles/aks/app-routing.md
+5-1Lines changed: 5 additions & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -63,10 +63,14 @@ az aks create \
63
63
64
64
### Enable on an existing cluster
65
65
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`.
67
67
68
68
```azurecli-interactive
69
+
# az aks approuting enable
69
70
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
70
74
```
71
75
72
76
# [Open Service Mesh (OSM) (retired)](#tab/with-osm)
0 commit comments