Skip to content

Commit e268730

Browse files
authored
Update azure-files-dynamic-pv.md
1 parent 6445da8 commit e268730

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

articles/aks/azure-files-dynamic-pv.md

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ titleSuffix: Azure Kubernetes Service
44
description: Learn how to dynamically create a persistent volume with Azure Files for use with multiple concurrent pods in Azure Kubernetes Service (AKS)
55
services: container-service
66
ms.topic: article
7-
ms.date: 07/01/2020
7+
ms.date: 03/22/2021
88

99

1010
#Customer intent: As a developer, I want to learn how to dynamically create and attach storage using Azure Files to pods in AKS.
@@ -55,7 +55,7 @@ mountOptions:
5555
- cache=strict
5656
- actimeo=30
5757
parameters:
58-
skuName: Standard_LRS
58+
skuName: Premium_LRS
5959
```
6060
6161
Create the storage class with the [kubectl apply][kubectl-apply] command:
@@ -66,7 +66,7 @@ kubectl apply -f azure-file-sc.yaml
6666

6767
## Create a persistent volume claim
6868

69-
A persistent volume claim (PVC) uses the storage class object to dynamically provision an Azure file share. The following YAML can be used to create a persistent volume claim *5 GB* in size with *ReadWriteMany* access. For more information on access modes, see the [Kubernetes persistent volume][access-modes] documentation.
69+
A persistent volume claim (PVC) uses the storage class object to dynamically provision an Azure file share. The following YAML can be used to create a persistent volume claim *100 GB* in size with *ReadWriteMany* access. For more information on access modes, see the [Kubernetes persistent volume][access-modes] documentation.
7070

7171
Now create a file named `azure-file-pvc.yaml` and copy in the following YAML. Make sure that the *storageClassName* matches the storage class created in the last step:
7272

@@ -81,7 +81,7 @@ spec:
8181
storageClassName: my-azurefile
8282
resources:
8383
requests:
84-
storage: 5Gi
84+
storage: 100Gi
8585
```
8686
8787
> [!NOTE]
@@ -99,7 +99,7 @@ Once completed, the file share will be created. A Kubernetes secret is also crea
9999
$ kubectl get pvc my-azurefile
100100

101101
NAME STATUS VOLUME CAPACITY ACCESS MODES STORAGECLASS AGE
102-
my-azurefile Bound pvc-8436e62e-a0d9-11e5-8521-5a8664dc0477 5Gi RWX my-azurefile 5m
102+
my-azurefile Bound pvc-8436e62e-a0d9-11e5-8521-5a8664dc0477 10Gi RWX my-azurefile 5m
103103
```
104104

105105
## Use the persistent volume
@@ -181,7 +181,7 @@ mountOptions:
181181
- cache=strict
182182
- actimeo=30
183183
parameters:
184-
skuName: Standard_LRS
184+
skuName: Premium_LRS
185185
```
186186
187187
## Using Azure tags

0 commit comments

Comments
 (0)