Storage
Kubernetes storage management involves connecting your ephemeral Pods to persistent data sources. Vapor provides visibility into both the physical volumes and the claims made by applications.
Navigate to Kubernetes > Storages.
Persistent Volumes (PV)
PVs are the actual storage resources provisioned in the cluster (e.g., an NFS share, an iSCSI LUN, or a local host path).
- View the capacity, access modes, and reclaim policy of all PVs.
- Check the status to see if a PV is Available, Bound, or Released.
Persistent Volume Claims (PVC)
PVCs are requests for storage by users or applications.
- View which PVCs are bound to which PVs.
- Monitor the storage capacity requested versus what was actually provisioned.
- If a PVC is stuck in a
Pendingstate, Vapor allows you to inspect the events to determine if a StorageClass failed to provision the backing volume.