storageClassName
storageClassName is a field in the PersistentVolumeClaim (PVC) specification that identifies the StorageClass to use for provisioning and binding a volume. A StorageClass is a cluster-scoped resource that describes how a volume should be provisioned, including the provisioner, parameters, and reclaim policy.
When a PVC specifies a storageClassName, the Kubernetes control plane uses the associated dynamic provisioner to
If storageClassName is omitted or left empty, the behavior depends on the cluster configuration and version.
StorageClass resources define parameters such as the provisioner (the backend storage driver), parameters for the provisioning
See also: StorageClass, PersistentVolume, PersistentVolumeClaim, dynamic provisioning.