Skip to content

Commit a5fa626

Browse files
Merge pull request #230991 from andyzhangx/patch-63
Update azure-disk-csi.md
2 parents 226601b + 44152ad commit a5fa626

File tree

5 files changed

+18
-7
lines changed

5 files changed

+18
-7
lines changed

articles/aks/azure-csi-blob-storage-provision.md

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ title: Create a persistent volume with Azure Blob storage in Azure Kubernetes Se
33
titleSuffix: Azure Kubernetes Service
44
description: Learn how to create a static or dynamic persistent volume with Azure Blob storage for use with multiple concurrent pods in Azure Kubernetes Service (AKS)
55
ms.topic: article
6-
ms.date: 01/18/2023
6+
ms.date: 03/23/2023
77

88
---
99

@@ -300,6 +300,8 @@ The following example demonstrates how to mount a Blob storage container as a pe
300300
apiVersion: v1
301301
kind: PersistentVolume
302302
metadata:
303+
annotations:
304+
pv.kubernetes.io/provisioned-by: blob.csi.azure.com
303305
name: pv-blob
304306
spec:
305307
capacity:
@@ -388,6 +390,8 @@ Kubernetes needs credentials to access the Blob storage container created earlie
388390
apiVersion: v1
389391
kind: PersistentVolume
390392
metadata:
393+
annotations:
394+
pv.kubernetes.io/provisioned-by: blob.csi.azure.com
391395
name: pv-blob
392396
spec:
393397
capacity:
@@ -511,4 +515,4 @@ The following YAML creates a pod that uses the persistent volume or persistent v
511515
[azure-blob-storage-nfs-support]: ../storage/blobs/network-file-system-protocol-support.md
512516
[enable-blob-csi-driver]: azure-blob-csi.md#before-you-begin
513517
[az-tags]: ../azure-resource-manager/management/tag-resources.md
514-
[sas-tokens]: ../storage/common/storage-sas-overview.md
518+
[sas-tokens]: ../storage/common/storage-sas-overview.md

articles/aks/azure-csi-disk-storage-provision.md

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ titleSuffix: Azure Kubernetes Service
44
description: Learn how to create a static or dynamic persistent volume with Azure Disks for use with multiple concurrent pods in Azure Kubernetes Service (AKS)
55
ms.topic: article
66
ms.custom: devx-track-azurecli
7-
ms.date: 01/18/2023
7+
ms.date: 03/23/2023
88
---
99

1010
# Create and use a volume with Azure Disks in Azure Kubernetes Service (AKS)
@@ -378,6 +378,8 @@ When you create an Azure disk for use with AKS, you can create the disk resource
378378
apiVersion: v1
379379
kind: PersistentVolume
380380
metadata:
381+
annotations:
382+
pv.kubernetes.io/provisioned-by: disk.csi.azure.com
381383
name: pv-azuredisk
382384
spec:
383385
capacity:

articles/aks/azure-csi-files-storage-provision.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -381,6 +381,8 @@ The following example demonstrates how to mount a file share as a persistent vol
381381
apiVersion: v1
382382
kind: PersistentVolume
383383
metadata:
384+
annotations:
385+
pv.kubernetes.io/provisioned-by: file.csi.azure.com
384386
name: azurefile
385387
spec:
386388
capacity:

articles/aks/azure-disk-csi.md

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
title: Use Container Storage Interface (CSI) driver for Azure Disks on Azure Kubernetes Service (AKS)
33
description: Learn how to use the Container Storage Interface (CSI) driver for Azure Disks in an Azure Kubernetes Service (AKS) cluster.
44
ms.topic: article
5-
ms.date: 01/18/2023
5+
ms.date: 03/16/2023
66
---
77

88
# Use the Azure Disks Container Storage Interface (CSI) driver in Azure Kubernetes Service (AKS)
@@ -26,6 +26,7 @@ In addition to in-tree driver features, Azure Disks CSI driver supports the foll
2626
- Performance improvements during concurrent disk attach and detach
2727
- In-tree drivers attach or detach disks in serial, while CSI drivers attach or detach disks in batch. There's significant improvement when there are multiple disks attaching to one node.
2828
- Premium SSD v1 and v2 are supported.
29+
- `PremiumV2_LRS` only supports `None` caching mode
2930
- Zone-redundant storage (ZRS) disk support
3031
- `Premium_ZRS`, `StandardSSD_ZRS` disk types are supported. ZRS disk could be scheduled on the zone or non-zone node, without the restriction that disk volume should be co-located in the same zone as a given node. For more information, including which regions are supported, see [Zone-redundant storage for managed disks](../virtual-machines/disks-redundancy.md).
3132
- [Snapshot](#volume-snapshots)
@@ -39,7 +40,7 @@ In addition to in-tree driver features, Azure Disks CSI driver supports the foll
3940

4041
|Name | Meaning | Available Value | Mandatory | Default value
4142
|--- | --- | --- | --- | ---
42-
|skuName | Azure Disks storage account type (alias: `storageAccountType`)| `Standard_LRS`, `Premium_LRS`, `StandardSSD_LRS`, `PremiumV2_LRS`, `UltraSSD_LRS`, `Premium_ZRS`, `StandardSSD_ZRS` | No | `StandardSSD_LRS`|
43+
|skuName | Azure Disks storage account type (alias: `storageAccountType`)| `Standard_LRS`, `Premium_LRS`, `StandardSSD_LRS`, `UltraSSD_LRS`, `Premium_ZRS`, `StandardSSD_ZRS`, `PremiumV2_LRS` (`PremiumV2_LRS` only supports `None` caching mode) | No | `StandardSSD_LRS`|
4344
|fsType | File System Type | `ext4`, `ext3`, `ext2`, `xfs`, `btrfs` for Linux, `ntfs` for Windows | No | `ext4` for Linux, `ntfs` for Windows|
4445
|cachingMode | [Azure Data Disk Host Cache Setting](../virtual-machines/windows/premium-storage-performance.md#disk-caching) | `None`, `ReadOnly`, `ReadWrite` | No | `ReadOnly`|
4546
|location | Specify Azure region where Azure Disks will be created | `eastus`, `westus`, etc. | No | If empty, driver will use the same location name as current AKS cluster|

articles/aks/csi-migrate-in-tree-volumes.md

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
title: Migrate from in-tree storage class to CSI drivers on Azure Kubernetes Service (AKS)
33
description: Learn how to migrate from in-tree persistent volume to the Container Storage Interface (CSI) driver in an Azure Kubernetes Service (AKS) cluster.
44
ms.topic: article
5-
ms.date: 01/18/2023
5+
ms.date: 03/23/2023
66
author: mgoedtel
77

88
---
@@ -411,6 +411,8 @@ Migration from in-tree to CSI is supported by creating a static volume.
411411
apiVersion: v1
412412
kind: PersistentVolume
413413
metadata:
414+
annotations:
415+
pv.kubernetes.io/provisioned-by: file.csi.azure.com
414416
name: azurefile
415417
spec:
416418
capacity:
@@ -511,4 +513,4 @@ For more about storage best practices, see [Best practices for storage and backu
511513
[aks-rbac-cluster-admin-role]: manage-azure-rbac.md#create-role-assignments-for-users-to-access-the-cluster
512514
[azure-resource-locks]: ../azure-resource-manager/management/lock-resources.md
513515
[csi-driver-overview]: csi-storage-drivers.md
514-
[aks-storage-backups-best-practices]: operator-best-practices-storage.md
516+
[aks-storage-backups-best-practices]: operator-best-practices-storage.md

0 commit comments

Comments
 (0)