Skip to main content

PersistentVolumeClaim



Resource Icon

Resource Overview

A Kubernetes resource that requests a Persistent Volume (PV).

Associated Resources

Parent Resource

Connected Resources

Resource Setting Values

  • service_name : Name of the PersistentVolumeClaim resource
  • namespace : Namespace where PVC resources will be deployed
  • annotations : A key-value used to display necessary information in the Kubernetes system
  • labels : To distinguish objects, the user arbitrarily specifies the desired value
  • spec : Define specific specifications of PVC
    • spec.storage_class_name : Specify the storage class name to use
    • spec.volume_name : PV name to be connected to PVC
    • spec.request_storage : Storage capacity to allocate to PV
    • spec.access_modes : Desired access mode that the PV must have - (Must contain or match the access mode of the PV)

Reference Materials