Skip to content

Commit a90b2fc

Browse files
authored
Update virtual-nodes-cli.md
1 parent 59bf460 commit a90b2fc

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

articles/aks/virtual-nodes-cli.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ This article shows you how to create and configure the virtual network resources
1717

1818
## Before you begin
1919

20-
Virtual nodes enable network communication between pods that run in ACI and the AKS cluster. To provide this communication, a virtual network subnet is created and delegated permissions are assigned. Virtual nodes only work with AKS clusters created using *advanced* networking. By default, AKS clusters are created with *basic* networking. This article shows you how to create a virtual network and subnets, then deploy an AKS cluster that uses advanced networking.
20+
Virtual nodes enable network communication between pods that run in Azure Container Instances (ACI) and the AKS cluster. To provide this communication, a virtual network subnet is created and delegated permissions are assigned. Virtual nodes only work with AKS clusters created using *advanced* networking. By default, AKS clusters are created with *basic* networking. This article shows you how to create a virtual network and subnets, then deploy an AKS cluster that uses advanced networking.
2121

2222
If you have not previously used ACI, register the service provider with your subscription. You can check the status of the ACI provider registration using the [az provider list][az-provider-list] command, as shown in the following example:
2323

@@ -153,7 +153,7 @@ You deploy an AKS cluster into the AKS subnet created in a previous step. Get th
153153
az network vnet subnet show --resource-group myResourceGroup --vnet-name myVnet --name myAKSSubnet --query id -o tsv
154154
```
155155

156-
Use the [az aks create][az-aks-create] command to create an AKS cluster. The following example creates a cluster named *myAKSCluster* with one node. Replace `<subnetId>` with the ID obtained in the previous step, and then `<appId>` and `<password>` with the
156+
Use the [az aks create][az-aks-create] command to create an AKS cluster. The following example creates a cluster named *myAKSCluster* with one node. Replace `<subnetId>` with the ID obtained in the previous step, and then `<appId>` and `<password>` with the values gathered in the previous section.
157157

158158
```azurecli-interactive
159159
az aks create \
@@ -300,7 +300,7 @@ Close the terminal session to your test pod with `exit`. When your session is en
300300

301301
If you no longer wish to use virtual nodes, you can disable them using the [az aks disable-addons][az aks disable-addons] command.
302302

303-
First, delete the helloworld pod running on the virtual node:
303+
First, delete the aci-helloworld pod running on the virtual node:
304304

305305
```azurecli-interactive
306306
kubectl delete -f virtual-node.yaml

0 commit comments

Comments
 (0)