Skip to content

Commit 42923a8

Browse files
authored
Update csi-debug.md
1 parent ead0083 commit 42923a8

File tree

1 file changed

+9
-1
lines changed

1 file changed

+9
-1
lines changed

docs/csi-debug.md

Lines changed: 9 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,13 +35,21 @@ blobfuse 1.2.4
3535
```
3636

3737
### troubleshooting connection failure
38+
- blobfuse
3839

3940
Blobfuse mount will fail due to incorrect storage account name, key or container name, run below commands to check whether blobfuse mount would work on agent node:
4041
```console
4142
mkdir test
4243
export AZURE_STORAGE_ACCOUNT=
4344
export AZURE_STORAGE_ACCESS_KEY=
4445
# only for sovereign cloud
45-
# export AZURE_STORAGE_BLOB_ENDPOINT=<youraccountname>.blob.core.chinacloudapi.cn
46+
# export AZURE_STORAGE_BLOB_ENDPOINT=accountname.blob.core.chinacloudapi.cn
4647
blobfuse test --container-name=CONTAINER-NAME --tmp-path=/tmp/blobfuse -o allow_other --file-cache-timeout-in-seconds=120
4748
```
49+
50+
- NFSv3
51+
52+
```console
53+
mkdir /tmp/test
54+
mount -t nfs -o sec=sys,vers=3,nolock accountname.blob.core.windows.net:/accountname/container-name /tmp/test
55+
```

0 commit comments

Comments
 (0)