pub struct PodOS {
pub name: String,
}
Expand description
PodOS defines the OS parameters of a pod.
Fields§
§name: String
Name is the name of the operating system. The currently supported values are linux and windows. Additional value may be defined in future and can be one of: https://github.com/opencontainers/runtime-spec/blob/master/config.md#platform-specific-configuration Clients should expect to handle additional values and treat unrecognized values in this field as os: null
Trait Implementations§
source§impl<'de> Deserialize<'de> for PodOS
impl<'de> Deserialize<'de> for PodOS
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>,
Deserialize this value from the given Serde deserializer. Read more