Skip to content

Commit 9ed9bac

Browse files
committed
[AKS] Additional format update
1 parent d3022ac commit 9ed9bac

File tree

1 file changed

+7
-8
lines changed

1 file changed

+7
-8
lines changed

articles/aks/http-application-routing.md

Lines changed: 7 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -32,14 +32,13 @@ The HTTP application routing add-on can be enabled with the Azure CLI when deplo
3232
az aks create --resource-group myResourceGroup --name myAKSCluster --enable-addons http_application_routing
3333
```
3434

35-
> [!NOTE]
36-
> You can enable HTTP routing on an existing AKS cluster using the [az aks enable-addons][az-aks-enable-addons] command. Add the `--addons` parameter and specify *http_application_routing* as shown in the following example:
37-
>
38-
> ```azurecli
39-
> az aks enable-addons --resource-group myResourceGroup --name myAKSCluster --addons http_application_routing
40-
> ```
41-
42-
After the cluster is deployed, use the [az aks show][az-aks-show] command to retrieve the DNS zone name. This name is needed to deploy applications to the AKS cluster.
35+
You can also enable HTTP routing on an existing AKS cluster using the [az aks enable-addons][az-aks-enable-addons] command. To enable HTTP routing on an existing cluster, add the `--addons` parameter and specify *http_application_routing* as shown in the following example:
36+
37+
```azurecli
38+
az aks enable-addons --resource-group myResourceGroup --name myAKSCluster --addons http_application_routing
39+
```
40+
41+
After the cluster is deployed or updated, use the [az aks show][az-aks-show] command to retrieve the DNS zone name. This name is needed to deploy applications to the AKS cluster.
4342

4443
```azurecli
4544
$ az aks show --resource-group myResourceGroup --name myAKSCluster --query addonProfiles.httpApplicationRouting.config.HTTPApplicationRoutingZoneName -o table

0 commit comments

Comments
 (0)