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/concepts-storage.md
+8-8Lines changed: 8 additions & 8 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -152,15 +152,15 @@ A cluster administrator can *statically* create a persistent volume, or a volume
152
152
153
153
## Storage classes
154
154
155
-
To specify different tiers of storage, such as Premium and Standard, you can create a *storage class*.
155
+
To specify different tiers of storage, such as premium or standard, you can create a *storage class*.
156
156
157
157
A storage class also defines a *reclaim policy*. When you delete the persistent volume, the reclaim policy controls the behavior of the underlying Azure Storage resource. The underlying resource can either be deleted or kept for use with a future pod.
158
158
159
159
For clusters using the [Container Storage Interface (CSI) drivers][csi-storage-drivers] the following extra storage classes are created:
160
160
161
161
| Storage class | Description |
162
162
|---|---|
163
-
|`managed-csi`| Uses Azure StandardSSD locally redundant storage (LRS) to create a managed disk. The reclaim policy ensures that the underlying Azure Disk is deleted when the persistent volume that used it is deleted. The storage class also configures the persistent volumes to be expandable. You can edit the persistent volume claim to specify the new size. |
163
+
|`managed-csi`| Uses Azure Standard SSD locally redundant storage (LRS) to create a managed disk. The reclaim policy ensures that the underlying Azure Disk is deleted when the persistent volume that used it is deleted. The storage class also configures the persistent volumes to be expandable. You can edit the persistent volume claim to specify the new size. |
164
164
|`managed-csi-premium`| Uses Azure Premium locally redundant storage (LRS) to create a managed disk. The reclaim policy again ensures that the underlying Azure Disk is deleted when the persistent volume that used it is deleted. Similarly, this storage class allows for persistent volumes to be expanded. |
165
165
|`azurefile-csi`| Uses Azure Standard storage to create an Azure file share. The reclaim policy ensures that the underlying Azure file share is deleted when the persistent volume that used it is deleted. |
166
166
|`azurefile-csi-premium`| Uses Azure Premium storage to create an Azure file share. The reclaim policy ensures that the underlying Azure file share is deleted when the persistent volume that used it is deleted.|
@@ -223,7 +223,7 @@ spec:
223
223
When you create a pod definition, you also specify:
224
224
225
225
* The persistent volume claim to request the desired storage.
226
-
* The *volumeMount* for your applications to read and write data.
226
+
* The *volume mount* for your applications to read and write data.
227
227
228
228
The following example YAML manifest shows how the previous persistent volume claim can be used to mount a volume at */mnt/azure*:
229
229
@@ -249,11 +249,11 @@ For mounting a volume in a Windows container, specify the drive letter and path.
0 commit comments