Skip to content

Commit da42c89

Browse files
authored
Update csi-debug.md
1 parent 0ca0e13 commit da42c89

File tree

1 file changed

+13
-1
lines changed

1 file changed

+13
-1
lines changed

docs/csi-debug.md

Lines changed: 13 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,4 +32,16 @@ $ kubectl logs csi-blob-node-cvgbs -c blob -n kube-system > csi-blob-node.log
3232
# kubectl exec -it csi-blob-node-fmbqw -n kube-system -c blob -- sh
3333
# blobfuse -v
3434
blobfuse 1.2.4
35-
```
35+
```
36+
37+
### troubleshooting connection failure
38+
39+
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:
40+
```console
41+
mkdir test
42+
export AZURE_STORAGE_ACCOUNT=
43+
export AZURE_STORAGE_ACCESS_KEY=
44+
# only for sovereign cloud
45+
# export AZURE_STORAGE_BLOB_ENDPOINT=<youraccountname>.blob.core.chinacloudapi.cn
46+
blobfuse test --container-name=CONTAINER-NAME --tmp-path=/tmp/blobfuse -o allow_other --file-cache-timeout-in-seconds=120
47+
```

0 commit comments

Comments
 (0)