Skip to the content.

Kubernetes - Persistent Volume Claims 🚩

Description 👀

Persistent Volume Claims, otherwise known as PVC, and Persistent Volumes are two separate Kubernetes resources. PVC are a way to dynamically provision from a persistent volume based on the request and properties set on the volume such as size, access mode, storage class, etc. PVC are also used to bind persistent volumes to pods and containers in order to persist data. PVC are also used to reclaim persistent volumes when they are no longer needed. Every PVC is bound to a single persistent volume. There is a 1:1 relationship between PVC and persistent volumes.


Basic Commands 📝


Examples 🧩


↩ī¸