You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: articles/aks/use-ultra-disks.md
+4-4Lines changed: 4 additions & 4 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -23,25 +23,25 @@ This feature can only be set at cluster creation or node pool creation time.
23
23
- 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.
24
24
- The supported size range for ultra disks is between 100 and 1500.
25
25
26
-
## Create a new cluster that can use Ultra disks
26
+
## Create a new cluster that can use ultra disks
27
27
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.
29
29
30
30
Create an Azure resource group:
31
31
32
32
```azurecli-interactive
33
33
az group create --name myResourceGroup --location westus2
34
34
```
35
35
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.
37
37
38
38
```azurecli-interactive
39
39
az aks create -g MyResourceGroup -n myAKSCluster -l westus2 --node-vm-size Standard_D2s_v3 --zones 1 2 --node-count 2 --enable-ultra-ssd
40
40
```
41
41
42
42
If you want to create clusters without ultra disk support, you can do so by omitting the `--enable-ultra-ssd` parameter.
43
43
44
-
## Enable Ultra disks on an existing cluster
44
+
## Enable ultra disks on an existing cluster
45
45
46
46
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.
0 commit comments