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-premium-v2-disks.md
+5-5Lines changed: 5 additions & 5 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -8,7 +8,7 @@ ms.date: 3/22/2023
8
8
9
9
# Use Azure Premium SSD v2 disks on Azure Kubernetes Service
10
10
11
-
[Azure Premium SSD v2 disks][azure-premium-v2-disk-overview]offers IO-intense enterprise workloads a consistent sub-millisecond disk latency and high IOPS and throughput. The performance (capacity, throughput, and IOPS) of Premium SSD v2 disks can be independently configured at any time, making it easier for more scenarios to be cost efficient while meeting performance needs.
11
+
[Azure Premium SSD v2 disks][azure-premium-v2-disk-overview]offer IO-intense enterprise workloads a consistent sub-millisecond disk latency and high IOPS and throughput. The performance (capacity, throughput, and IOPS) of Premium SSD v2 disks can be independently configured at any time, making it easier for more scenarios to be cost efficient while meeting performance needs.
12
12
13
13
## Before you begin
14
14
@@ -19,11 +19,11 @@ This feature can only be set at cluster creation or node pool creation time.
19
19
20
20
### Limitations
21
21
22
-
- Azure Premium SSD v2 disks has certain limitations that you need to be aware of. For a complete list, see [Premium SSD v2 limitations][premium-v2-limitations].
22
+
- Azure Premium SSD v2 disks have certain limitations that you need to be aware of. For a complete list, see [Premium SSD v2 limitations][premium-v2-limitations].
23
23
24
24
## Create a new cluster
25
25
26
-
Before creating an AKS cluster that is able to leverage Azure Premium SSD v2 disks, you need to [create a Premium SSD v2 disk][create-premium-v2-disk] in an availability zone following their deployment steps. Then create an AKS cluster in the same region and availability zone that supports Premium Storage and attach the disk to it using the following command.
26
+
Before creating an AKS cluster that is able to use Azure Premium SSD v2 disks, you need to [create a Premium SSD v2 disk][create-premium-v2-disk] in an availability zone following their deployment steps. Then create an AKS cluster in the same region and availability zone that supports Premium Storage and attach the disk to it using the following command.
27
27
28
28
```azurecli-interactive
29
29
az aks create -g MyResourceGroup -n myAKSCluster -l westus2 --node-vm-size Standard_D2s_v3 --zones 1 2 --node-count 2
@@ -47,7 +47,7 @@ To use Premium SSD v2 disks in a deployment or stateful set, you can use a [stor
47
47
48
48
A storage class is used to define how a unit of storage is dynamically created with a persistent volume. For more information on Kubernetes storage classes, see [Kubernetes Storage Classes][kubernetes-storage-classes].
49
49
50
-
In this example, we'll create a storage class that references Premium SSD v2 disks. Create a file named `azure-pv2-disk-sc.yaml`, and copy in the following manifest.
50
+
In this example, you create a storage class that references Premium SSD v2 disks. Create a file named `azure-pv2-disk-sc.yaml`, and copy in the following manifest.
51
51
52
52
```yaml
53
53
apiVersion: storage.k8s.io/v1
@@ -179,7 +179,7 @@ Events:
179
179
180
180
## Using Azure tags
181
181
182
-
For more details on using Azure tags, see [Use Azure tags in Azure Kubernetes Service (AKS)][use-tags].
182
+
For more information on using Azure tags, see [Use Azure tags in Azure Kubernetes Service (AKS)][use-tags].
0 commit comments