An Azure service that stores unstructured data in the cloud as blobs.
NFS Azure file shares aren't supported for Windows as mentioned here.
In your AKS cluster even if you enabled Azure Blob CSI driver, the Blob CSI driver will not be installed on the AKS Windows nodes, and you can verify as follows:
- This command will show the enabled CSI drivers on your AKS cluster:
kubectl get csidrivers - This command will show the CSI nodes
kubectl get csinodes - Describe to the Windows node to show the enabled driver on that node:
kubectl describe csinodes <window-node>
You will get similar to this output which means that the Blob CSI driver is not installed on The Windows node:
Hope this helps, and please "Accept as Answer" if it helped, so that it can help others in the community looking for help on similar topics.