Skip to main content

PersistentVolume



Resource Icon

Resource Overview

A Kubernetes resource that provides network-attached storage to a cluster.

Associated Resources

Parent Resource

Connected Resources


Resource Configuration

Basic Settings

  • annotations : Kubernetes system metadata
  • labels : User-defined labels for PV identification and classification
  • spec.storage_class_name : Name of the StorageClass to use
  • spec.storage_capacity : Storage capacity
  • spec.volume_driver : CSI-based volume driver
  • spec.volume_handle : Identifier of the actual storage resource
  • spec.persistent_volume_reclaim_policy : Volume handling policy when the claim is released - Retain / Delete / Recycle
  • spec.read_only : Whether the volume is read-only
  • spec.volume_attributes : Additional volume attributes specific to the driver
  • spec.access_modes : Volume access modes - ReadOnlyMany, ReadWriteOnce, ReadWriteMany
  • spec.mount_options : Additional mount options
  • node_stage_secret_ref : Reference to a Secret containing storage access credentials

References