Skip to content

Commit 8d1da18

Browse files
committed
Fixed broken link
1 parent f163e8a commit 8d1da18

File tree

2 files changed

+5
-5
lines changed

2 files changed

+5
-5
lines changed

articles/aks/learn/quick-windows-container-deploy-cli.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,7 @@ An [Azure resource group](../../azure-resource-manager/management/overview.md) i
5656
5757
In this section, we create an AKS cluster with the following configuration:
5858
59-
- The cluster is configured with two nodes to ensure it operates reliably. A [node](../concepts-clusters-workloads.md#nodes-and-node-pools) is an Azure virtual machine (VM) that runs the Kubernetes node components and container runtime.
59+
- The cluster is configured with two nodes to ensure it operates reliably. A [node](../concepts-clusters-workloads.md#nodes) is an Azure virtual machine (VM) that runs the Kubernetes node components and container runtime.
6060
- The `--windows-admin-password` and `--windows-admin-username` parameters set the administrator credentials for any Windows Server nodes on the cluster and must meet [Windows Server password requirements][windows-server-password].
6161
- The node pool uses `VirtualMachineScaleSets`.
6262
@@ -68,13 +68,13 @@ To create the AKS cluster with Azure CLI, follow these steps:
6868
echo "Please enter the username to use as administrator credentials for Windows Server nodes on your cluster: " && read WINDOWS_USERNAME
6969
```
7070
71-
1. Create a password for the administrator username you created in the previous step. The password must be a minimum of 14 characters and meet the [Windows Server password complexity requirements][windows-server-password].
71+
2. Create a password for the administrator username you created in the previous step. The password must be a minimum of 14 characters and meet the [Windows Server password complexity requirements][windows-server-password].
7272
7373
```azurecli
7474
echo "Please enter the password to use as administrator credentials for Windows Server nodes on your cluster: " && read WINDOWS_PASSWORD
7575
```
7676
77-
1. Create your cluster using the [az aks create][az-aks-create] command and specify the `--windows-admin-username` and `--windows-admin-password` parameters. The following example command creates a cluster using the value from *WINDOWS_USERNAME* you set in the previous command. Alternatively, you can provide a different username directly in the parameter instead of using *WINDOWS_USERNAME*.
77+
3. Create your cluster using the [az aks create][az-aks-create] command and specify the `--windows-admin-username` and `--windows-admin-password` parameters. The following example command creates a cluster using the value from *WINDOWS_USERNAME* you set in the previous command. Alternatively, you can provide a different username directly in the parameter instead of using *WINDOWS_USERNAME*.
7878
7979
```azurecli
8080
az aks create \

articles/aks/learn/quick-windows-container-deploy-powershell.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@ ResourceId : /subscriptions/00000000-0000-0000-0000-000000000000/resource
5050

5151
In this section, we create an AKS cluster with the following configuration:
5252

53-
- The cluster is configured with two nodes to ensure it operates reliably. A [node](../concepts-clusters-workloads.md#nodes-and-node-pools) is an Azure virtual machine (VM) that runs the Kubernetes node components and container runtime.
53+
- The cluster is configured with two nodes to ensure it operates reliably. A [node](../concepts-clusters-workloads.md#nodes) is an Azure virtual machine (VM) that runs the Kubernetes node components and container runtime.
5454
- The `-WindowsProfileAdminUserName` and `-WindowsProfileAdminUserPassword` parameters set the administrator credentials for any Windows Server nodes on the cluster and must meet the [Windows Server password complexity requirements][windows-server-password].
5555
- The node pool uses `VirtualMachineScaleSets`.
5656

@@ -63,7 +63,7 @@ To create the AKS cluster with Azure PowerShell, follow these steps:
6363
-Message 'Please create the administrator credentials for your Windows Server containers'
6464
```
6565
66-
1. Create your cluster using the [New-AzAksCluster][new-azakscluster] cmdlet and specify the `WindowsProfileAdminUserName` and `WindowsProfileAdminUserPassword` parameters.
66+
2. Create your cluster using the [New-AzAksCluster][new-azakscluster] cmdlet and specify the `WindowsProfileAdminUserName` and `WindowsProfileAdminUserPassword` parameters.
6767
6868
```azurepowershell
6969
New-AzAksCluster -ResourceGroupName myResourceGroup `

0 commit comments

Comments
 (0)