Kubernetes PersistentVolume Generator

Generate PersistentVolume (PV) manifests to provision physical storage resources in your cluster, such as local HostPaths, NFS, or cloud block storage.

PersistentVolume Configuration

Metadata

Storage Specification

For hostPath backend. Only for single-node or development.

persistentvolume-configuration.yaml
1

Kubernetes PersistentVolume Generator

Overview

Generate Kubernetes PersistentVolume (PV) manifests. A PV is a piece of storage in the cluster that has been provisioned by an administrator or dynamically provisioned using Storage Classes.

Frequently Asked Questions

What is the difference between a PV and PVC?
A PersistentVolume (PV) is the actual storage resource in the cluster. A PersistentVolumeClaim (PVC) is a request for storage by a user. Pods use PVCs to mount the PVs.
What does the Reclaim Policy do?
The Reclaim Policy dictates what happens to the PV when its bound PVC is deleted. 'Retain' keeps the volume and data for manual recovery. 'Delete' permanently deletes the volume (common for cloud block storage).