What is the difference between persistent volume (PV) and persistent volume claim (PVC) in Kubernetes/ Openshift by referring to documentation?
What is the difference be
A PersistentVolume (PV) is a piece of storage in the cluster or central storage that has been provisioned by an administrator or dynamically provisioned using Storage Classes.
A PersistentVolumeClaim (PVC) is a request for storage by a user. It is similar to a Pod. Pods consume node resources and PVCs consume PV resources.
In real life example, Suppose your parents have a lot of money(PV) but they only provide you once you request them according to your needs(PVC).