Skip to content

Commit

Permalink
Update csi-debug.md
Browse files Browse the repository at this point in the history
  • Loading branch information
andyzhangx authored Jun 23, 2021
1 parent 56b119f commit c554614
Showing 1 changed file with 15 additions and 0 deletions.
15 changes: 15 additions & 0 deletions docs/csi-debug.md
Original file line number Diff line number Diff line change
Expand Up @@ -36,6 +36,21 @@ kubectl logs csi-blob-node-cvgbs -c blob -n kube-system > csi-blob-node.log
> kubectl logs daemonset/csi-blob-node -c blob -n kube-system -f
> ```
#### Update driver version quickly by editting driver deployment directly
- update controller deployment
```console
kubectl edit deployment csi-blob-controller -n kube-system
```
- update daemonset deployment
```console
kubectl edit ds csi-blob-node -n kube-system
```
change below deployment config, e.g.
```console
image: mcr.microsoft.com/k8s/csi/blob-csi:v1.5.0
imagePullPolicy: Always
```

### get blobfuse driver version
```console
kubectl exec -it csi-blob-node-fmbqw -n kube-system -c blob -- sh
Expand Down

0 comments on commit c554614

Please sign in to comment.