I have a PV alpha-pv
in the kubernetes cluster and have created a PVC matching the PV specs. The PV uses the Storage Class: slow
. However, when I check the existence of Storage Class in Cluster there is no Storage Class existing and still my PVC was Bound
to the PV.
How is this Possible when the Storage Class referred in the PV/PVC does not exists in the cluster?
If I don't mention the Storage Class in PVC, I get error message stating Storage Class Set. There is already an existing PV in the cluster which has RWO
access modes, 1Gi
storage size and with the Storage class named slow
. But on checking the Storage Class details, there is no Storage Class resource in cluster.
If I add the Storage Class name slow
in my PVC mysql-alpha-pvc
, then the PVC binds to the PV. But I'm not clear how this happens when the Storage Class referred in PV/PVC named slow
doesn't exist in the cluster.