Struct k8s_openapi::api::core::v1::SeccompProfile
source · pub struct SeccompProfile {
pub localhost_profile: Option<String>,
pub type_: String,
}
Expand description
SeccompProfile defines a pod/container’s seccomp profile settings. Only one profile source may be set.
Fields§
§localhost_profile: Option<String>
localhostProfile indicates a profile defined in a file on the node should be used. The profile must be preconfigured on the node to work. Must be a descending path, relative to the kubelet’s configured seccomp profile location. Must only be set if type is “Localhost”.
type_: String
type indicates which kind of seccomp profile will be applied. Valid options are:
Localhost - a profile defined in a file on the node should be used. RuntimeDefault - the container runtime default profile should be used. Unconfined - no profile should be applied.
Trait Implementations§
source§impl Clone for SeccompProfile
impl Clone for SeccompProfile
source§fn clone(&self) -> SeccompProfile
fn clone(&self) -> SeccompProfile
Returns a copy of the value. Read more
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moresource§impl Debug for SeccompProfile
impl Debug for SeccompProfile
source§impl DeepMerge for SeccompProfile
impl DeepMerge for SeccompProfile
source§fn merge_from(&mut self, other: Self)
fn merge_from(&mut self, other: Self)
Merge
other
into self
.source§impl Default for SeccompProfile
impl Default for SeccompProfile
source§fn default() -> SeccompProfile
fn default() -> SeccompProfile
Returns the “default value” for a type. Read more
source§impl<'de> Deserialize<'de> for SeccompProfile
impl<'de> Deserialize<'de> for SeccompProfile
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
source§impl PartialEq<SeccompProfile> for SeccompProfile
impl PartialEq<SeccompProfile> for SeccompProfile
source§fn eq(&self, other: &SeccompProfile) -> bool
fn eq(&self, other: &SeccompProfile) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.