Persistent Volume Claim in Kubernetes

A PersistentVolumeClaim (PVC) is a request for storage by a user. A PVC will be automatically bound to a PV on creation when a PV is available. Claims can request specific size and access modes.

By default the Persistent Volume (PV) is left as is until it manually deleted by a administrator when the associated PVC is deleted.

# list the PVC
> kubectl get pvc
> kubectl get persistentvolumeclaim

# delete the PVC
> kubectl delete pvc PVC-NAME
  •  
  •  
  •  
  •  

Viet Luu has written 318 articles

If you like what you are reading, please consider buying us a coffee ( or 2 ) as a token of appreciation.

Buy Me A Coffee

We are thankful for your never ending support.