Globally unique resources that provide access to data management services and serve as the parent namespace for the services.
Hi ,
Thanks for reaching out to Microsoft Q&A.
You cannot directly point a Kubernetes StorageClass to a Windows path like C:\ClusterStorage\Volume1 in AKS (including azure Local/AKS on HCI). Kubernetes works through CSI drivers, not raw host paths. To use that Cluster Shared Volume, you must expose it via a supported CSI driver such as the SMB CSI driver or a host-based CSI (for ex, SMB share backed by that path). Practically, you first share C:\ClusterStorage\Volume1 as an SMB share from the host, then create a StorageClass referencing the SMB CSI driver with the share UNC path (for example \\node\share). The StorageClass does not take local disk paths; it only takes driver-specific parameters (server/share for SMB, export path for NFS, etc.). There is no official example mapping directly to C:\ClusterStorage\... because that is not a supported abstraction.
Please 'Upvote'(Thumbs-up) and 'Accept' as answer if the reply was helpful. This will be benefitting other community members who face the same issue.