pub struct FluentBitPositionDbFlexVolume {
pub driver: String,
pub fs_type: Option<String>,
pub options: Option<BTreeMap<String, String>>,
pub read_only: Option<bool>,
pub secret_ref: Option<FluentBitPositionDbFlexVolumeSecretRef>,
}Expand description
flexVolume represents a generic volume resource that is provisioned/attached using an exec based plugin. Deprecated: FlexVolume is deprecated. Consider using a CSIDriver instead.
Fields§
§driver: Stringdriver is the name of the driver to use for this volume.
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”. The default filesystem depends on FlexVolume script.
options: Option<BTreeMap<String, String>>options is Optional: this field holds extra command options if any.
read_only: Option<bool>readOnly is Optional: defaults to false (read/write). ReadOnly here will force the ReadOnly setting in VolumeMounts.
secret_ref: Option<FluentBitPositionDbFlexVolumeSecretRef>secretRef is Optional: secretRef is reference to the secret object containing sensitive information to pass to the plugin scripts. This may be empty if no secret object is specified. If the secret object contains more than one secret, all secrets are passed to the plugin scripts.
Trait Implementations§
Source§impl Clone for FluentBitPositionDbFlexVolume
impl Clone for FluentBitPositionDbFlexVolume
Source§fn clone(&self) -> FluentBitPositionDbFlexVolume
fn clone(&self) -> FluentBitPositionDbFlexVolume
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source. Read moreSource§impl Default for FluentBitPositionDbFlexVolume
impl Default for FluentBitPositionDbFlexVolume
Source§fn default() -> FluentBitPositionDbFlexVolume
fn default() -> FluentBitPositionDbFlexVolume
Source§impl<'de> Deserialize<'de> for FluentBitPositionDbFlexVolume
impl<'de> Deserialize<'de> for FluentBitPositionDbFlexVolume
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Source§impl PartialEq for FluentBitPositionDbFlexVolume
impl PartialEq for FluentBitPositionDbFlexVolume
Source§fn eq(&self, other: &FluentBitPositionDbFlexVolume) -> bool
fn eq(&self, other: &FluentBitPositionDbFlexVolume) -> bool
self and other values to be equal, and is used by ==.