Struct k8s_openapi::api::core::v1::DownwardAPIVolumeSource [−][src]
pub struct DownwardAPIVolumeSource {
pub default_mode: Option<i32>,
pub items: Option<Vec<DownwardAPIVolumeFile>>,
}
Expand description
DownwardAPIVolumeSource represents a volume containing downward API info. Downward API volumes support ownership management and SELinux relabeling.
Fields
default_mode: Option<i32>
Optional: mode bits to use on created files by default. Must be a Optional: mode bits used to set permissions on created files by default. Must be an octal value between 0000 and 0777 or a decimal value between 0 and 511. YAML accepts both octal and decimal values, JSON requires decimal values for mode bits. Defaults to 0644. Directories within the path are not affected by this setting. This might be in conflict with other options that affect the file mode, like fsGroup, and the result can be other mode bits set.
items: Option<Vec<DownwardAPIVolumeFile>>
Items is a list of downward API volume file
Trait Implementations
Returns the “default value” for a type. Read more
Deserialize this value from the given Serde deserializer. Read more
This method tests for self
and other
values to be equal, and is used
by ==
. Read more
This method tests for !=
.
Auto Trait Implementations
impl RefUnwindSafe for DownwardAPIVolumeSource
impl Send for DownwardAPIVolumeSource
impl Sync for DownwardAPIVolumeSource
impl Unpin for DownwardAPIVolumeSource
impl UnwindSafe for DownwardAPIVolumeSource
Blanket Implementations
Mutably borrows from an owned value. Read more