kubernetes-sigs / blob-csi-driver

Azure Blob Storage CSI driver
Apache License 2.0
117 stars 75 forks source link

Ubuntu 22.04 affecting ability to install blobfuse proxy #1364

Closed gaelxcowi closed 2 months ago

gaelxcowi commented 2 months ago

Basically this:

https://github.com/orgs/community/discussions/120966

andyzhangx commented 2 months ago

should already be recovered, btw, if you have patched daemonset csi-blob-node to install a specific blobfuse2 version, you could set as false, that would also mitigate this issue.

The latest(2024.04) aks node image has already installed 2.2.1 version by default, so you don't need to install 2.2.1 if you have already upgraded to latest node image version.

kubectl patch daemonset csi-blob-node -n kube-system -p '{"spec":{"template":{"spec":{"initContainers":[{"env":[{"name":"INSTALL_BLOBFUSE2","value":"false"}],"name":"install-blobfuse-proxy"}]}}}}'