Kazan v0.11.0 Kazan.Apis.Core.V1.PersistentVolumeClaimSpec View Source

PersistentVolumeClaimSpec describes the common attributes of storage devices and allows a Source for provider-specific attributes

OpenAPI Definition: io.k8s.api.core.v1.PersistentVolumeClaimSpec

Properties

  • access_modes :: [ String ]

    • AccessModes contains the desired access modes the volume should have. More info.
  • resources :: Kazan.Apis.Core.V1.ResourceRequirements

    • Resources represents the minimum resources the volume should have. More info.
  • selector :: Kazan.Models.Apimachinery.Meta.V1.LabelSelector

    • A label query over volumes to consider for binding.
  • storage_class_name :: String

    • Name of the StorageClass required by the claim. More info.
  • volume_mode :: String

    • volumeMode defines what type of volume is required by the claim. Value of Filesystem is implied when not included in claim spec. This is an alpha feature and may change in the future.
  • volume_name :: String

    • VolumeName is the binding reference to the PersistentVolume backing this claim.

Link to this section Summary

Link to this section Types

Link to this type t() View Source
t() :: %Kazan.Apis.Core.V1.PersistentVolumeClaimSpec{
  access_modes: [String.t()],
  resources: Kazan.Apis.Core.V1.ResourceRequirements.t(),
  selector: Kazan.Models.Apimachinery.Meta.V1.LabelSelector.t(),
  storage_class_name: String.t(),
  volume_mode: String.t(),
  volume_name: String.t()
}