pub struct IoK8sApiCoreV1QuobyteVolumeSource {
pub group: Option<String>,
pub read_only: Option<bool>,
pub registry: String,
pub tenant: Option<String>,
pub user: Option<String>,
pub volume: String,
}
Expand description
Represents a Quobyte mount that lasts the lifetime of a pod. Quobyte volumes do not support ownership management or SELinux relabeling.
Fields§
§group: Option<String>
Group to map volume access to Default is no group
read_only: Option<bool>
ReadOnly here will force the Quobyte volume to be mounted with read-only permissions. Defaults to false.
registry: String
Registry represents a single or multiple Quobyte Registry services specified as a string as host:port pair (multiple entries are separated with commas) which acts as the central registry for volumes
tenant: Option<String>
Tenant owning the given Quobyte volume in the Backend Used with dynamically provisioned Quobyte volumes, value is set by the plugin
user: Option<String>
User to map volume access to Defaults to serivceaccount user
volume: String
Volume is a string that references an already created Quobyte volume by name.
Trait Implementations§
Source§impl Clone for IoK8sApiCoreV1QuobyteVolumeSource
impl Clone for IoK8sApiCoreV1QuobyteVolumeSource
Source§fn clone(&self) -> IoK8sApiCoreV1QuobyteVolumeSource
fn clone(&self) -> IoK8sApiCoreV1QuobyteVolumeSource
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read more