[−][src]Struct k8s_openapi::api::core::v1::Toleration
The pod this Toleration is attached to tolerates any taint that matches the triple <key,value,effect> using the matching operator <operator>.
Fields
effect: Option<String>
Effect indicates the taint effect to match. Empty means match all taint effects. When specified, allowed values are NoSchedule, PreferNoSchedule and NoExecute.
key: Option<String>
Key is the taint key that the toleration applies to. Empty means match all taint keys. If the key is empty, operator must be Exists; this combination means to match all values and all keys.
operator: Option<String>
Operator represents a key's relationship to the value. Valid operators are Exists and Equal. Defaults to Equal. Exists is equivalent to wildcard for value, so that a pod can tolerate all taints of a particular category.
toleration_seconds: Option<i64>
TolerationSeconds represents the period of time the toleration (which must be of effect NoExecute, otherwise this field is ignored) tolerates the taint. By default, it is not set, which means tolerate the taint forever (do not evict). Zero and negative values will be treated as 0 (evict immediately) by the system.
value: Option<String>
Value is the taint value the toleration matches to. If the operator is Exists, the value should be empty, otherwise just a regular string.
Trait Implementations
impl Clone for Toleration
[src]
pub fn clone(&self) -> Toleration
[src]
pub fn clone_from(&mut self, source: &Self)
1.0.0[src]
impl Debug for Toleration
[src]
impl Default for Toleration
[src]
pub fn default() -> Toleration
[src]
impl<'de> Deserialize<'de> for Toleration
[src]
pub fn deserialize<D>(deserializer: D) -> Result<Self, D::Error> where
D: Deserializer<'de>,
[src]
D: Deserializer<'de>,
impl PartialEq<Toleration> for Toleration
[src]
pub fn eq(&self, other: &Toleration) -> bool
[src]
pub fn ne(&self, other: &Toleration) -> bool
[src]
impl Serialize for Toleration
[src]
impl StructuralPartialEq for Toleration
[src]
Auto Trait Implementations
impl RefUnwindSafe for Toleration
[src]
impl Send for Toleration
[src]
impl Sync for Toleration
[src]
impl Unpin for Toleration
[src]
impl UnwindSafe for Toleration
[src]
Blanket Implementations
impl<T> Any for T where
T: 'static + ?Sized,
[src]
T: 'static + ?Sized,
impl<T> Borrow<T> for T where
T: ?Sized,
[src]
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
[src]
T: ?Sized,
pub fn borrow_mut(&mut self) -> &mut T
[src]
impl<T> DeserializeOwned for T where
T: for<'de> Deserialize<'de>,
[src]
T: for<'de> Deserialize<'de>,
impl<T> From<T> for T
[src]
impl<T, U> Into<U> for T where
U: From<T>,
[src]
U: From<T>,
impl<T> ToOwned for T where
T: Clone,
[src]
T: Clone,
type Owned = T
The resulting type after obtaining ownership.
pub fn to_owned(&self) -> T
[src]
pub fn clone_into(&self, target: &mut T)
[src]
impl<T, U> TryFrom<U> for T where
U: Into<T>,
[src]
U: Into<T>,
type Error = Infallible
The type returned in the event of a conversion error.
pub fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>
[src]
impl<T, U> TryInto<U> for T where
U: TryFrom<T>,
[src]
U: TryFrom<T>,