Skip to content

Commit 8dfe454

Browse files
committed
added new section to set limits
1 parent 65f713a commit 8dfe454

File tree

1 file changed

+12
-0
lines changed

1 file changed

+12
-0
lines changed

articles/aks/use-premium-v2-disks.md

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -163,6 +163,16 @@ Events:
163163
[...]
164164
```
165165

166+
## Set IOPS and throughput limits
167+
168+
Input/Output Operations Per Second (IOPS) and throughput limits for Azure Premium v2 SSD disk is currently not supported through AKS, as Kubernetes doesn't support this. To adjust performance, you can use the Azure CLI command [az disk update][az-disk-update] and including the `--disk-iops-read-write` and `--disk-mbps-read-write` parameters.
169+
170+
The following example updates the disk IOPS read/write to **5000** and Mbps to **200**. For `--resource-group`, the value must be the second resource group automatically created to store the AKS worker nodes with the naming convention *MC_resourcegroupname_clustername_location*. The value for the `--name` parameter, is the name of the volume created using the StorageClass and it starts with `pvc-`. To identify the disk name, you can run `kubectl get pvc` or navigate to the secondary resource group in the portal to find it. See [manage resources from the Azure portal][manage-resources-azure-portal] to learn more.
171+
172+
```azurecli
173+
az disk update --subscription $subscription --resource-group myResourceGroup --name $diskName --disk-iops-read-write=5000 --disk-mbps-read-write=200
174+
```
175+
166176
## Using Azure tags
167177

168178
For more information on using Azure tags, see [Use Azure tags in Azure Kubernetes Service (AKS)][use-tags].
@@ -184,3 +194,5 @@ For more information on using Azure tags, see [Use Azure tags in Azure Kubernete
184194
[azure-disk-volume]: azure-disk-csi.md
185195
[use-tags]: use-tags.md
186196
[operator-best-practices-storage]: operator-best-practices-storage.md
197+
[az-disk-update]: /cli/azure/disk#az-disk-update
198+
[manage-resources-azure-portal]: ../azure-resource-manager/management/manage-resources-portal.md#open-resources

0 commit comments

Comments
 (0)