Skip to content
Docs Try Aspire

PersistentVolume Constructors

Class Constructors 1 member
Represents a PersistentVolume resource in Kubernetes.
Represents a PersistentVolume resource in Kubernetes.
public sealed class PersistentVolume
{
public PersistentVolume()
{
// ...
}
}
PersistentVolume is a cluster-level storage resource within Kubernetes. It defines a piece of storage that has been provisioned by an administrator or dynamically provisioned using StorageClasses. This resource is independent of individual Pods and remains available beyond the lifecycle of any Pod utilizing it. PersistentVolume is designed to manage storage that is not tied to a single Pod or namespace, enabling data persistence across Pod restarts or failures. It includes properties to define storage class, access modes, and volume attributes.