Skip to content

Commit 2edb167

Browse files
committed
removed section and updated section
1 parent 29e3db2 commit 2edb167

File tree

2 files changed

+2
-37
lines changed

2 files changed

+2
-37
lines changed

articles/aks/azure-blob-csi.md

Lines changed: 0 additions & 35 deletions
Original file line numberDiff line numberDiff line change
@@ -38,41 +38,6 @@ Review the prerequisites listed in the [CSI storage drivers overview][csi-storag
3838

3939
Perform the steps in this [link][csi-blob-storage-open-source-driver-uninstall-steps] if you previously installed the [CSI Blob Storage open-source driver][csi-blob-storage-open-source-driver] to access Azure Blob storage from your cluster.
4040

41-
## Enable CSI driver on a new or existing AKS cluster
42-
43-
Using the Azure CLI, you can enable the Blob storage CSI driver on a new or existing AKS cluster before you configure a persistent volume for use by pods in the cluster.
44-
45-
To enable the driver on a new cluster, include the `--enable-blob-driver` parameter with the `az aks create` command as shown in the following example:
46-
47-
```azurecli
48-
az aks create --enable-blob-driver -n myAKSCluster -g myResourceGroup
49-
```
50-
51-
To enable the driver on an existing cluster, include the `--enable-blob-driver` parameter with the `az aks update` command as shown in the following example:
52-
53-
```azurecli
54-
az aks update --enable-blob-driver -n myAKSCluster -g myResourceGroup
55-
```
56-
57-
You're prompted to confirm there isn't an open-source Blob CSI driver installed. After confirming, it may take several minutes to complete this action. Once it's complete, you should see in the output the status of enabling the driver on your cluster. The following example is resembles the section indicating the results of the previous command:
58-
59-
```output
60-
"storageProfile": {
61-
"blobCsiDriver": {
62-
"enabled": true
63-
},
64-
```
65-
66-
## Disable CSI driver on an existing AKS cluster
67-
68-
Using the Azure CLI, you can disable the Blob storage CSI driver on an existing AKS cluster after you remove the persistent volume from the cluster.
69-
70-
To disable the driver on an existing cluster, include the `--disable-blob-driver` parameter with the `az aks update` command as shown in the following example:
71-
72-
```azurecli
73-
az aks update --disable-blob-driver -n myAKSCluster -g myResourceGroup
74-
```
75-
7641
## Use a persistent volume with Azure Blob storage
7742

7843
A [persistent volume][persistent-volume] (PV) represents a piece of storage that's provisioned for use with Kubernetes pods. A PV can be used by one or many pods and can be dynamically or statically provisioned. If multiple pods need concurrent access to the same storage volume, you can use Azure Blob storage to connect by using the Network File System (NFS) or blobfuse. This article shows you how to dynamically create an Azure Blob storage container for use by multiple pods in an AKS cluster.

articles/aks/csi-storage-drivers.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ The CSI storage driver support on AKS allows you to natively use:
3333

3434
## Disable CSI storage drivers on a new or existing cluster
3535

36-
To disable CSI storage drivers on a new cluster, use one of the following depending on the storage system:
36+
To disable CSI storage drivers on a new cluster, include one of the following parameters depending on the storage system:
3737

3838
* `--disable-disk-driver` allows you to disable the [Azure Disks CSI driver][azure-disk-csi].
3939
* `--disable-file-driver` allows you to disable the [Azure Files CSI driver][azure-files-csi].
@@ -52,7 +52,7 @@ az aks update -n myAKSCluster -g myResourceGroup --disable-disk-driver --disable
5252

5353
## Enable CSI storage drivers on an existing cluster
5454

55-
To enable CSI storage drivers on a new cluster, use one of the following depending on the storage system:
55+
To enable CSI storage drivers on a new cluster, include one of the following parameters depending on the storage system:
5656

5757
* `--enable-disk-driver` allows you enable the [Azure Disks CSI driver][azure-disk-csi].
5858
* `--enable-file-driver` allows you to enable the [Azure Files CSI driver][azure-files-csi].

0 commit comments

Comments
 (0)