Skip to content

Commit 28f8314

Browse files
authored
Update README.md
1 parent 001211f commit 28f8314

File tree

1 file changed

+8
-2
lines changed

1 file changed

+8
-2
lines changed

deploy/example/nfs/README.md

Lines changed: 8 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,11 +6,17 @@
66
77
#### Supported CSI driver version: `v0.8.0`
88

9-
#### Available regions
9+
#### [Available regions](https://aka.ms/azurefiles/nfs/preview/regions)
1010
`eastus`, `eastus2`, `southeastasia`, `uksouth`
1111

1212
#### Prerequisite
1313
- [install CSI driver](https://github.com/kubernetes-sigs/azurefile-csi-driver/blob/master/docs/install-csi-driver-master.md)
14+
- Register `AllowNfsFileShares` feature under your subscription
15+
```console
16+
az feature register --name AllowNfsFileShares --namespace Microsoft.Storage
17+
az feature list -o table --query "[?contains(name, 'Microsoft.Storage/AllowNfsFileShares')].{Name:name,State:properties.state}"
18+
az provider register --namespace Microsoft.Storage
19+
```
1420
- Create a `Premium_LRS` Azure storage account with following configurations to support NFS share
1521
- account kind: `FileStorage`
1622
- secure transfer required(enable HTTPS traffic only): `false`
@@ -32,7 +38,7 @@ parameters:
3238
protocol: nfs # use "fsType: nfs" in v0.8.0
3339
```
3440
35-
run following command to create a storage class:
41+
run following commands to create a storage class:
3642
```console
3743
wget https://raw.githubusercontent.com/kubernetes-sigs/azurefile-csi-driver/master/deploy/example/storageclass-azurefile-nfs.yaml
3844
# set `storageAccount` in storageclass-azurefile-nfs.yaml

0 commit comments

Comments
 (0)