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: docs/csi-debug.md
+34Lines changed: 34 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -144,5 +144,39 @@ kubectl delete po node-debugger-node-name-xxxx
144
144
145
145
</details>
146
146
147
+
### Troubleshooting aznfs mount
148
+
> Supported from v1.22.2
149
+
> About aznfs mount helper: https://github.com/Azure/AZNFS-mount/
150
+
151
+
<details><summary>
152
+
Check mount point information
153
+
</summary>
154
+
155
+
```console
156
+
kubectl debug node/node-name --image=nginx
157
+
findmnt -t nfs
158
+
```
159
+
160
+
The `SOURCE` of the mount point should have prefix with an ip address rather than domain name. e.g, **10.161.100.100**:/nfs02a796c105814dbebc4e/pvc-ca149059-6872-4d6f-a806-48402648110c.
161
+
162
+
</details>
163
+
164
+
165
+
<details><summary>
166
+
Get client-side logs on Linux node
167
+
</summary>
168
+
169
+
```console
170
+
kubectl debug node/node-name --image=nginx
171
+
172
+
cat /opt/microsoft/aznfs/data/aznfs.log
173
+
```
174
+
175
+
If ip was migrated successfully, you should find logs like:
176
+
1.`IP for nfsxxxxx.blob.core.windows.net changed [1.2.3.4 -> 5.6.7.8].`
0 commit comments