Skip to content

Commit 50911a3

Browse files
committed
updated TOC and ultra disks article
1 parent 669a0a8 commit 50911a3

File tree

2 files changed

+5
-5
lines changed

2 files changed

+5
-5
lines changed

articles/aks/TOC.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -457,7 +457,7 @@
457457
href: azure-disk-csi.md
458458
- name: Provision Azure Disks storage
459459
href: azure-csi-disk-storage-provision.md
460-
- name: Use Azure Ultra Disks
460+
- name: Use Azure ultra disks
461461
href: use-ultra-disks.md
462462
- name: Other storage options
463463
items:

articles/aks/use-ultra-disks.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -23,25 +23,25 @@ This feature can only be set at cluster creation or node pool creation time.
2323
- Ultra disks can't be used with some features and functionality, such as availability sets or Azure Disk Encryption. Review [**Ultra disks GA scope and limitations**](../virtual-machines/disks-enable-ultra-ssd.md#ga-scope-and-limitations) before proceeding.
2424
- The supported size range for ultra disks is between 100 and 1500.
2525

26-
## Create a new cluster that can use Ultra disks
26+
## Create a new cluster that can use ultra disks
2727

28-
Create an AKS cluster that is able to leverage Ultra Disks by using the following CLI commands. Use the `--enable-ultra-ssd` flag to set the `EnableUltraSSD` feature.
28+
Create an AKS cluster that is able to leverage Azure ultra Disks by using the following CLI commands. Use the `--enable-ultra-ssd` flag to set the `EnableUltraSSD` feature.
2929

3030
Create an Azure resource group:
3131

3232
```azurecli-interactive
3333
az group create --name myResourceGroup --location westus2
3434
```
3535

36-
Create an AKS-managed Azure AD cluster with support for Ultra Disks.
36+
Create an AKS-managed Azure AD cluster with support for ultra disks.
3737

3838
```azurecli-interactive
3939
az aks create -g MyResourceGroup -n myAKSCluster -l westus2 --node-vm-size Standard_D2s_v3 --zones 1 2 --node-count 2 --enable-ultra-ssd
4040
```
4141

4242
If you want to create clusters without ultra disk support, you can do so by omitting the `--enable-ultra-ssd` parameter.
4343

44-
## Enable Ultra disks on an existing cluster
44+
## Enable ultra disks on an existing cluster
4545

4646
You can enable ultra disks on existing clusters by adding a new node pool to your cluster that support ultra disks. Configure a new node pool to use ultra disks by using the `--enable-ultra-ssd` flag.
4747

0 commit comments

Comments
 (0)