[][src]Struct k8s_openapi::api::core::v1::QuobyteVolumeSource

pub struct QuobyteVolumeSource {
    pub group: Option<String>,
    pub read_only: Option<bool>,
    pub registry: String,
    pub tenant: Option<String>,
    pub user: Option<String>,
    pub volume: String,
}

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

impl Clone for QuobyteVolumeSource[src]

impl Debug for QuobyteVolumeSource[src]

impl Default for QuobyteVolumeSource[src]

impl<'de> Deserialize<'de> for QuobyteVolumeSource[src]

impl PartialEq<QuobyteVolumeSource> for QuobyteVolumeSource[src]

impl Serialize for QuobyteVolumeSource[src]

impl StructuralPartialEq for QuobyteVolumeSource[src]

Auto Trait Implementations

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> DeserializeOwned for T where
    T: for<'de> Deserialize<'de>, 
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.