pub struct StorageOsPersistentVolumeSource {
pub volume_name: Option<String>,
pub volume_namespace: Option<String>,
pub fs_type: Option<String>,
pub read_only: Option<bool>,
pub secret_ref: Option<ObjectReference>,
}
Expand description
Represents a StorageOS persistent volume resource.
Fields§
§volume_name: Option<String>
volumeName is the human-readable name of the StorageOS volume. Volume names are only unique within a namespace.
volume_namespace: Option<String>
volumeNamespace specifies the scope of the volume within StorageOS. If no namespace is specified then the Pod’s namespace will be used. This allows the Kubernetes name scoping to be mirrored within StorageOS for tighter integration. Set VolumeName to any name to override the default behaviour. Set to “default” if you are not using namespaces within StorageOS. Namespaces that do not pre-exist within StorageOS will be created. +optional
fs_type: Option<String>
fsType is the filesystem type to mount. Must be a filesystem type supported by the host operating system. Ex. “ext4”, “xfs”, “ntfs”. Implicitly inferred to be “ext4” if unspecified. +optional
read_only: Option<bool>
readOnly defaults to false (read/write). ReadOnly here will force the ReadOnly setting in VolumeMounts. +optional
secret_ref: Option<ObjectReference>
secretRef specifies the secret to use for obtaining the StorageOS API credentials. If not specified, default values will be attempted. +optional
Implementations§
Source§impl StorageOsPersistentVolumeSource
impl StorageOsPersistentVolumeSource
Sourcepub fn volume_name(&self) -> &str
pub fn volume_name(&self) -> &str
Returns the value of volume_name
, or the default value if volume_name
is unset.
Sourcepub fn volume_namespace(&self) -> &str
pub fn volume_namespace(&self) -> &str
Returns the value of volume_namespace
, or the default value if volume_namespace
is unset.
Trait Implementations§
Source§impl Clone for StorageOsPersistentVolumeSource
impl Clone for StorageOsPersistentVolumeSource
Source§fn clone(&self) -> StorageOsPersistentVolumeSource
fn clone(&self) -> StorageOsPersistentVolumeSource
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moreSource§impl Message for StorageOsPersistentVolumeSource
impl Message for StorageOsPersistentVolumeSource
Source§fn encoded_len(&self) -> usize
fn encoded_len(&self) -> usize
Source§fn encode(&self, buf: &mut impl BufMut) -> Result<(), EncodeError>where
Self: Sized,
fn encode(&self, buf: &mut impl BufMut) -> Result<(), EncodeError>where
Self: Sized,
Source§fn encode_to_vec(&self) -> Vec<u8> ⓘwhere
Self: Sized,
fn encode_to_vec(&self) -> Vec<u8> ⓘwhere
Self: Sized,
Source§fn encode_length_delimited(
&self,
buf: &mut impl BufMut,
) -> Result<(), EncodeError>where
Self: Sized,
fn encode_length_delimited(
&self,
buf: &mut impl BufMut,
) -> Result<(), EncodeError>where
Self: Sized,
Source§fn encode_length_delimited_to_vec(&self) -> Vec<u8> ⓘwhere
Self: Sized,
fn encode_length_delimited_to_vec(&self) -> Vec<u8> ⓘwhere
Self: Sized,
Source§fn decode(buf: impl Buf) -> Result<Self, DecodeError>where
Self: Default,
fn decode(buf: impl Buf) -> Result<Self, DecodeError>where
Self: Default,
Source§fn decode_length_delimited(buf: impl Buf) -> Result<Self, DecodeError>where
Self: Default,
fn decode_length_delimited(buf: impl Buf) -> Result<Self, DecodeError>where
Self: Default,
Source§fn merge(&mut self, buf: impl Buf) -> Result<(), DecodeError>where
Self: Sized,
fn merge(&mut self, buf: impl Buf) -> Result<(), DecodeError>where
Self: Sized,
self
. Read moreSource§fn merge_length_delimited(&mut self, buf: impl Buf) -> Result<(), DecodeError>where
Self: Sized,
fn merge_length_delimited(&mut self, buf: impl Buf) -> Result<(), DecodeError>where
Self: Sized,
self
.Source§impl PartialEq for StorageOsPersistentVolumeSource
impl PartialEq for StorageOsPersistentVolumeSource
Source§fn eq(&self, other: &StorageOsPersistentVolumeSource) -> bool
fn eq(&self, other: &StorageOsPersistentVolumeSource) -> bool
self
and other
values to be equal, and is used by ==
.