Skip to content

Commit c93feb1

Browse files
authored
Merge pull request #189027 from Nickomang/aks-link-fix
updated preview in ToC entry and h1; fixed link
2 parents b6959f4 + 340835c commit c93feb1

File tree

2 files changed

+16
-10
lines changed

2 files changed

+16
-10
lines changed

articles/aks/TOC.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -202,7 +202,7 @@
202202
items:
203203
- name: Node pool snapshot
204204
href: node-pool-snapshot.md
205-
- name: Use Dedicated Hosts with AKS
205+
- name: Use Dedicated Hosts with AKS (preview)
206206
href: use-azure-dedicated-hosts.md
207207
- name: Use multiple node pools
208208
href: use-multiple-node-pools.md

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

Lines changed: 15 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -7,14 +7,14 @@ ms.date: 02/11/2021
77

88
---
99

10-
# Add Azure Dedicated Host to an Azure Kubernetes Service (AKS) cluster
10+
# Add Azure Dedicated Host to an Azure Kubernetes Service (AKS) cluster (Preview)
1111

1212
Azure Dedicated Host is a service that provides physical servers - able to host one or more virtual machines - dedicated to one Azure subscription. Dedicated hosts are the same physical servers used in our data centers, provided as a resource. You can provision dedicated hosts within a region, availability zone, and fault domain. Then, you can place VMs directly into your provisioned hosts, in whatever configuration best meets your needs.
1313

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
```
@@ -85,7 +88,7 @@ For more information about the host SKUs and pricing, see [Azure Dedicated Host
8588

8689
Use az vm host create to create a host. If you set a fault domain count for your host group, you will be asked to specify the fault domain for your host.
8790

88-
In this example, we will use [az vm host group create](/cli/azure/vm/host/group#az_vm_host_group_create?view=azure-cli-latest&preserve-view=true) to create a host group using both availability zones and fault domains.
91+
In this example, we will use [az vm host group create][az-vm-host-group-create] to create a host group using both availability zones and fault domains.
8992

9093
```azurecli-interactive
9194
az vm host group create \
@@ -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
@@ -127,3 +132,4 @@ In this article, you learned how to create an AKS cluster with a Dedicated host,
127132
[aks-faq]: faq.md
128133
[azure-cli-install]: /cli/azure/install-azure-cli
129134
[dedicated-hosts]: /azure/virtual-machines/dedicated-hosts.md
135+
[az-vm-host-group-create]: /cli/azure/vm/host/group#az_vm_host_group_create

0 commit comments

Comments
 (0)