Kubernetes PersistentVolumeClaim Generator
Generate PersistentVolumeClaim (PVC) manifests to request storage resources for your Pods. Configure storage size and access modes.
Kubernetes PersistentVolumeClaim Generator
Overview
Generate Kubernetes PersistentVolumeClaim (PVC) manifests. PVCs allow Pods to consume abstract storage resources without needing to know the underlying storage infrastructure.
Frequently Asked Questions
How do PVCs bind to PVs?
A PVC requests a specific size and access mode (e.g., 5Gi, ReadWriteOnce). The control plane then finds a matching PV that satisfies or exceeds these requirements and binds them together.
What is a StorageClass?
A StorageClass enables dynamic volume provisioning. If you specify a storageClassName in your PVC, Kubernetes will automatically provision a new PV of that class if one doesn't already exist.