pub struct ControllerConfigVolumesProjectedSourcesConfigMap {
pub items: Option<Vec<ControllerConfigVolumesProjectedSourcesConfigMapItems>>,
pub name: Option<String>,
pub optional: Option<bool>,
}Expand description
configMap information about the configMap data to project
Fields§
§items: Option<Vec<ControllerConfigVolumesProjectedSourcesConfigMapItems>>items if unspecified, each key-value pair in the Data field of the referenced ConfigMap will be projected into the volume as a file whose name is the key and content is the value. If specified, the listed keys will be projected into the specified paths, and unlisted keys will not be present. If a key is specified which is not present in the ConfigMap, the volume setup will error unless it is marked optional. Paths must be relative and may not contain the ‘..’ path or start with ‘..’.
name: Option<String>Name of the referent. This field is effectively required, but due to backwards compatibility is allowed to be empty. Instances of this type with an empty value here are almost certainly wrong. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names
optional: Option<bool>optional specify whether the ConfigMap or its keys must be defined
Trait Implementations§
Source§impl Clone for ControllerConfigVolumesProjectedSourcesConfigMap
impl Clone for ControllerConfigVolumesProjectedSourcesConfigMap
Source§fn clone(&self) -> ControllerConfigVolumesProjectedSourcesConfigMap
fn clone(&self) -> ControllerConfigVolumesProjectedSourcesConfigMap
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source. Read moreSource§impl Default for ControllerConfigVolumesProjectedSourcesConfigMap
impl Default for ControllerConfigVolumesProjectedSourcesConfigMap
Source§fn default() -> ControllerConfigVolumesProjectedSourcesConfigMap
fn default() -> ControllerConfigVolumesProjectedSourcesConfigMap
Source§impl<'de> Deserialize<'de> for ControllerConfigVolumesProjectedSourcesConfigMap
impl<'de> Deserialize<'de> for ControllerConfigVolumesProjectedSourcesConfigMap
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 ControllerConfigVolumesProjectedSourcesConfigMap
impl PartialEq for ControllerConfigVolumesProjectedSourcesConfigMap
Source§fn eq(&self, other: &ControllerConfigVolumesProjectedSourcesConfigMap) -> bool
fn eq(&self, other: &ControllerConfigVolumesProjectedSourcesConfigMap) -> bool
self and other values to be equal, and is used by ==.