Struct k8s_openapi::api::core::v1::PersistentVolumeClaimSpec [−][src]
pub struct PersistentVolumeClaimSpec { pub access_modes: Vec<String>, pub data_source: Option<TypedLocalObjectReference>, pub resources: Option<ResourceRequirements>, pub selector: Option<LabelSelector>, pub storage_class_name: Option<String>, pub volume_mode: Option<String>, pub volume_name: Option<String>, }
Expand description
PersistentVolumeClaimSpec describes the common attributes of storage devices and allows a Source for provider-specific attributes
Fields
access_modes: Vec<String>
AccessModes contains the desired access modes the volume should have. More info: https://kubernetes.io/docs/concepts/storage/persistent-volumes#access-modes-1
data_source: Option<TypedLocalObjectReference>
This field can be used to specify either: * An existing VolumeSnapshot object (snapshot.storage.k8s.io/VolumeSnapshot) * An existing PVC (PersistentVolumeClaim) * An existing custom resource that implements data population (Alpha) In order to use custom resource types that implement data population, the AnyVolumeDataSource feature gate must be enabled. If the provisioner or an external controller can support the specified data source, it will create a new volume based on the contents of the specified data source.
resources: Option<ResourceRequirements>
Resources represents the minimum resources the volume should have. More info: https://kubernetes.io/docs/concepts/storage/persistent-volumes#resources
selector: Option<LabelSelector>
A label query over volumes to consider for binding.
storage_class_name: Option<String>
Name of the StorageClass required by the claim. More info: https://kubernetes.io/docs/concepts/storage/persistent-volumes#class-1
volume_mode: Option<String>
volumeMode defines what type of volume is required by the claim. Value of Filesystem is implied when not included in claim spec.
volume_name: Option<String>
VolumeName is the binding reference to the PersistentVolume backing this claim.
Trait Implementations
Returns the “default value” for a type. Read more
Deserialize this value from the given Serde deserializer. Read more
This method tests for self
and other
values to be equal, and is used
by ==
. Read more
This method tests for !=
.
Auto Trait Implementations
impl RefUnwindSafe for PersistentVolumeClaimSpec
impl Send for PersistentVolumeClaimSpec
impl Sync for PersistentVolumeClaimSpec
impl Unpin for PersistentVolumeClaimSpec
impl UnwindSafe for PersistentVolumeClaimSpec
Blanket Implementations
Mutably borrows from an owned value. Read more