Skip to content

Commit 53c54c4

Browse files
committed
updated articles in prep for release
1 parent 2edb167 commit 53c54c4

File tree

2 files changed

+9
-34
lines changed

2 files changed

+9
-34
lines changed

articles/aks/azure-blob-csi.md

Lines changed: 8 additions & 32 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ title: Use Container Storage Interface (CSI) driver for Azure Blob storage on Az
33
description: Learn how to use the Container Storage Interface (CSI) driver for Azure Blob storage in an Azure Kubernetes Service (AKS) cluster.
44
services: container-service
55
ms.topic: article
6-
ms.date: 10/18/2022
6+
ms.date: 11/07/2022
77
author: mgoedtel
88

99
---
@@ -22,6 +22,9 @@ Mounting Azure Blob storage as a file system into a container or pod, enables yo
2222

2323
The data on the object storage can be accessed by applications using BlobFuse or Network File System (NFS) 3.0 protocol. Before the introduction of the Azure Blob storage CSI driver, the only option was to manually install an unsupported driver to access Blob storage from your application running on AKS. When the Azure Blob storage CSI driver is enabled on AKS, there are two built-in storage classes: *azureblob-fuse-premium* and *azureblob-nfs-premium*.
2424

25+
> [!NOTE]
26+
> Azure Blob CSI driver supports NFS 3.0 and Blobfuse v1 protocols for Kubernetes versions up to 1.24 on AKS. For Kubernetes version 1.25 (preview), only NFS 3.0 protocol is supported.
27+
2528
To create an AKS cluster with CSI drivers support, see [CSI drivers on AKS][csi-drivers-aks]. To learn more about the differences in access between each of the Azure storage types using the NFS protocol, see [Compare access to Azure Files, Blob Storage, and Azure NetApp Files with NFS][compare-access-with-nfs].
2629

2730
## Azure Blob storage CSI driver features
@@ -177,50 +180,23 @@ To have a storage volume persist for your workload, you can use a StatefulSet. T
177180

178181
- To learn how to manually set up a static persistent volume, see [Create and use a volume with Azure Blob storage][azure-csi-blob-storage-static].
179182
- To learn how to dynamically set up a persistent volume, see [Create and use a dynamic persistent volume with Azure Blob storage][azure-csi-blob-storage-dynamic].
180-
- To learn how to use CSI driver for Azure Disks, see [Use Azure Disks with CSI driver](azure-disk-csi.md).
181-
- To learn how to use CSI driver for Azure Files, see [Use Azure Files with CSI driver](azure-files-csi.md).
183+
- To learn how to use CSI driver for Azure Disks, see [Use Azure Disks with CSI driver][azure-disk-csi-driver]
184+
- To learn how to use CSI driver for Azure Files, see [Use Azure Files with CSI driver][azure-files-csi-driver]
182185
- For more about storage best practices, see [Best practices for storage and backups in Azure Kubernetes Service][operator-best-practices-storage].
183186

184187
<!-- LINKS - external -->
185-
[access-modes]: https://kubernetes.io/docs/concepts/storage/persistent-volumes/#access-modes
186-
[kubectl-apply]: https://kubernetes.io/docs/reference/generated/kubectl/kubectl-commands#apply
187-
[kubectl-create]: https://kubernetes.io/docs/reference/generated/kubectl/kubectl-commands#create
188-
[kubectl-get]: https://kubernetes.io/docs/reference/generated/kubectl/kubectl-commands#get
189-
[kubernetes-storage-classes]: https://kubernetes.io/docs/concepts/storage/storage-classes/
190-
[kubernetes-volumes]: https://kubernetes.io/docs/concepts/storage/persistent-volumes/
191-
[managed-disk-pricing-performance]: https://azure.microsoft.com/pricing/details/managed-disks/
192188
[csi-specification]: https://github.com/container-storage-interface/spec/blob/master/spec.md
193189
[csi-blob-storage-open-source-driver]: https://github.com/kubernetes-sigs/blob-csi-driver
194190
[csi-blob-storage-open-source-driver-uninstall-steps]: https://github.com/kubernetes-sigs/blob-csi-driver/blob/master/docs/install-csi-driver-master.md#clean-up-blob-csi-driver
195191

196192
<!-- LINKS - internal -->
197-
[install-azure-cli]: /cli/azure/install-azure-cli
198-
[azure-disk-volume]: azure-disk-volume.md
199-
[azure-files-pvc]: azure-files-dynamic-pv.md
200-
[premium-storage]: ../virtual-machines/disks-types.md
201193
[compare-access-with-nfs]: ../storage/common/nfs-comparison.md
202-
[az-disk-list]: /cli/azure/disk#az_disk_list
203-
[az-snapshot-create]: /cli/azure/snapshot#az_snapshot_create
204-
[az-disk-create]: /cli/azure/disk#az_disk_create
205-
[az-disk-show]: /cli/azure/disk#az_disk_show
206-
[aks-quickstart-cli]: ./learn/quick-kubernetes-deploy-cli.md
207-
[aks-quickstart-portal]: ./learn/quick-kubernetes-deploy-portal.md
208-
[aks-quickstart-powershell]: ./learn/quick-kubernetes-deploy-powershell.md
209-
[install-azure-cli]: /cli/azure/install-azure-cli
210194
[operator-best-practices-storage]: operator-best-practices-storage.md
211195
[concepts-storage]: concepts-storage.md
212196
[persistent-volume]: concepts-storage.md#persistent-volumes
213197
[csi-drivers-aks]: csi-storage-drivers.md
214-
[storage-class-concepts]: concepts-storage.md#storage-classes
215-
[az-extension-add]: /cli/azure/extension#az_extension_add
216-
[az-extension-update]: /cli/azure/extension#az_extension_update
217-
[az-feature-register]: /cli/azure/feature#az_feature_register
218-
[az-feature-list]: /cli/azure/feature#az_feature_list
219-
[az-provider-register]: /cli/azure/provider#az_provider_register
220-
[node-resource-group]: faq.md#why-are-two-resource-groups-created-with-aks
221-
[storage-skus]: ../storage/common/storage-redundancy.md
222-
[use-tags]: use-tags.md
223-
[az-tags]: ../azure-resource-manager/management/tag-resources.md
224198
[azure-csi-blob-storage-dynamic]: azure-csi-blob-storage-dynamic.md
225199
[azure-csi-blob-storage-static]: azure-csi-blob-storage-static.md
226200
[csi-storage-driver-overview]: csi-storage-drivers.md
201+
[azure-disk-csi-driver]: azure-disk-csi-md
202+
[azure-files-csi-driver]: azure-files-csi.md

articles/aks/csi-storage-drivers.md

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,7 @@ title: Container Storage Interface (CSI) drivers on Azure Kubernetes Service (AK
33
description: Learn about and deploy the Container Storage Interface (CSI) drivers for Azure Disks and Azure Files in an Azure Kubernetes Service (AKS) cluster
44
services: container-service
55
ms.topic: article
6-
ms.date: 10/18/2022
7-
author: palma21
6+
ms.date: 11/07/2022
87

98
---
109

0 commit comments

Comments
 (0)