Skip to content

Commit 6848fbc

Browse files
authored
Merge pull request #190162 from miwithro/patch-127
Update use-azure-dedicated-hosts.md
2 parents a39d99b + f86c67b commit 6848fbc

File tree

1 file changed

+4
-3
lines changed

1 file changed

+4
-3
lines changed

articles/aks/use-azure-dedicated-hosts.md

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -78,7 +78,7 @@ You can also decide to use both availability zones and fault domains.
7878
Not all host SKUs are available in all regions, and availability zones. You can list host availability, and any offer restrictions before you start provisioning dedicated hosts.
7979

8080
```azurecli-interactive
81-
az vm list-skus -l eastus2 -r hostGroups/hosts -o table
81+
az vm list-skus -l eastus -r hostGroups/hosts -o table
8282
```
8383

8484
## Create a Host Group
@@ -97,6 +97,7 @@ az vm host group create \
9797
-g myDHResourceGroup \
9898
-z 1\
9999
--platform-fault-domain-count 1
100+
--automatic-placement true
100101
```
101102

102103
## Create a Dedicated Host
@@ -110,7 +111,7 @@ az vm host create \
110111
--host-group myHostGroup \
111112
--name myHost \
112113
--sku DSv3-Type1 \
113-
--platform-fault-domain 1 \
114+
--platform-fault-domain 0 \
114115
-g myDHResourceGroup
115116
```
116117

@@ -137,7 +138,7 @@ az role assignment create --assignee <id> --role "Contributor" --scope <Resource
137138
Create an AKS cluster, and add the Host Group you just configured.
138139

139140
```azurecli-interactive
140-
az aks create -g MyResourceGroup -n MyManagedCluster --location westus2 --kubernetes-version 1.20.13 --nodepool-name agentpool1 --node-count 1 --host-group-id <id> --node-vm-size Standard_D2s_v3 --enable-managed-identity --assign-identity <id>
141+
az aks create -g MyResourceGroup -n MyManagedCluster --location eastus --kubernetes-version 1.20.13 --nodepool-name agentpool1 --node-count 1 --host-group-id <id> --node-vm-size Standard_D2s_v3 --enable-managed-identity --assign-identity <id>
141142
```
142143

143144
## Add a Dedicated Host Node Pool to an existing AKS cluster

0 commit comments

Comments
 (0)