Hi Reddy Chakri,
Welcome to the Microsoft Q&A Platform! Thank you for asking your question here.
As akinbade abiola suggested, the issue might be related to the disk and node hosting the pod being in different zones. Have you checked the zone configuration for your AKS cluster and Azure storage account?
Additionally, you can follow the below troubleshooting steps:
1.Check if the Azure Blob CSI driver is installed in your AKS cluster by running the following command:
kubectl get deployments -n kube-system | grep azure-blob-csi
2.Verify that the CSI driver is running by checking the pod status:
kubectl get pods -n kube-system | grep azure-blob-csi
This command should return a pod named azure-blob-csi-controller-xxxxx or similar, with a status of Running.
3.Check the CSI driver logs for any error messages using the command kubectl logs -f -n kube-system azure-blob-csi-controller-xxxxx.
4.Verify that the Azure storage account and container are correctly configured and accessible from the AKS cluster.
For more information on CSI : https://learn.microsoft.com/en-us/azure/aks/csi-storage-drivers
https://learn.microsoft.com/en-us/azure/aks/azure-blob-csi?tabs=NFS
If you have any further queries, do let us know.
If the answer is helpful, please click "Accept Answer" and "Upvote it."