Skip to content

Commit 340835c

Browse files
committed
acrolinx
1 parent 2a23559 commit 340835c

File tree

1 file changed

+12
-7
lines changed

1 file changed

+12
-7
lines changed

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

Lines changed: 12 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ Azure Dedicated Host is a service that provides physical servers - able to host
1414
Using Azure Dedicated Hosts for nodes with your AKS cluster has the following benefits:
1515

1616
* Hardware isolation at the physical server level. No other VMs will be placed on your hosts. Dedicated hosts are deployed in the same data centers and share the same network and underlying storage infrastructure as other, non-isolated hosts.
17-
* Control over maintenance events initiated by the Azure platform. While the majority of maintenance events have little to no impact on your virtual machines, there are some sensitive workloads where each second of pause can have an impact. With dedicated hosts, you can opt in to a maintenance window to reduce the impact to your service.
17+
* Control over maintenance events initiated by the Azure platform. While most maintenance events have little to no impact on your virtual machines, there are some sensitive workloads where each second of pause can have an impact. With dedicated hosts, you can opt in to a maintenance window to reduce the impact to your service.
1818

1919
[!INCLUDE [preview features callout](./includes/preview/preview-callout.md)]
2020

@@ -59,20 +59,23 @@ az provider register --namespace Microsoft.ContainerService
5959
## Limitations
6060

6161
The following limitations apply when you integrate Azure Dedicated Host with Azure Kubernetes Service:
62-
* An existing agentpool cannot be converted from non-ADH to ADH or ADH to non-ADH.
63-
* It is not supported to update agentpool from host group A to host group B.
62+
63+
* An existing agent pool can't be converted from non-ADH to ADH or ADH to non-ADH.
64+
* It is not supported to update agent pool from host group A to host group B.
6465

6566
## Add a Dedicated Host Group to an AKS cluster
6667

6768
A host group is a resource that represents a collection of dedicated hosts. You create a host group in a region and an availability zone, and add hosts to it. When planning for high availability, there are additional options. You can use one or both of the following options with your dedicated hosts:
6869

69-
Span across multiple availability zones. In this case, you are required to have a host group in each of the zones you wish to use.
70-
Span across multiple fault domains which are mapped to physical racks.
70+
* Span across multiple availability zones. In this case, you are required to have a host group in each of the zones you wish to use.
71+
* Span across multiple fault domains, which are mapped to physical racks.
72+
7173
In either case, you are need to provide the fault domain count for your host group. If you do not want to span fault domains in your group, use a fault domain count of 1.
7274

7375
You can also decide to use both availability zones and fault domains.
7476

7577
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.
78+
7679
```azurecli-interactive
7780
az vm list-skus -l eastus2 -r hostGroups/hosts -o table
7881
```
@@ -96,20 +99,22 @@ az vm host group create \
9699
```
97100

98101
## Create an AKS cluster using the Host Group
102+
99103
Create an AKS cluster, and add the Host Group you just configured.
100104

101105
```azurecli-interactive
102106
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>
103107
```
104108

105-
## Add a Dedicated Host Nodepool to an existing AKS cluster
109+
## Add a Dedicated Host Node Pool to an existing AKS cluster
110+
106111
Add a Host Group to an already existing AKS cluster.
107112

108113
```azurecli-interactive
109114
az aks nodepool add --cluster-name MyManagedCluster --name agentpool3 --resource-group MyResourceGroup --node-count 1 --host-group-id <id> --node-vm-size Standard_D2s_v3
110115
```
111116

112-
## Remove a Dedicated Host Nodepool from an AKS cluster
117+
## Remove a Dedicated Host Node Pool from an AKS cluster
113118

114119
```azurecli-interactive
115120
az aks nodepool delete --cluster-name MyManagedCluster --name agentpool3 --resource-group MyResourceGroup

0 commit comments

Comments
 (0)