Struct k8s_openapi::v1_10::api::core::v1::NFSVolumeSource[][src]

pub struct NFSVolumeSource {
    pub path: String,
    pub read_only: Option<bool>,
    pub server: String,
}

Represents an NFS mount that lasts the lifetime of a pod. NFS volumes do not support ownership management or SELinux relabeling.

Fields

Path that is exported by the NFS server. More info: https://kubernetes.io/docs/concepts/storage/volumes#nfs

ReadOnly here will force the NFS export to be mounted with read-only permissions. Defaults to false. More info: https://kubernetes.io/docs/concepts/storage/volumes#nfs

Server is the hostname or IP address of the NFS server. More info: https://kubernetes.io/docs/concepts/storage/volumes#nfs

Trait Implementations

impl Clone for NFSVolumeSource
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl Debug for NFSVolumeSource
[src]

Formats the value using the given formatter. Read more

impl Default for NFSVolumeSource
[src]

Returns the "default value" for a type. Read more

impl PartialEq for NFSVolumeSource
[src]

This method tests for self and other values to be equal, and is used by ==. Read more

This method tests for !=.

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

Deserialize this value from the given Serde deserializer. Read more

impl Serialize for NFSVolumeSource
[src]

Serialize this value into the given Serde serializer. Read more

Auto Trait Implementations