[][src]Struct k8s_openapi::api::policy::v1beta1::PodDisruptionBudgetSpec

pub struct PodDisruptionBudgetSpec {
    pub max_unavailable: Option<IntOrString>,
    pub min_available: Option<IntOrString>,
    pub selector: Option<LabelSelector>,
}

PodDisruptionBudgetSpec is a description of a PodDisruptionBudget.

Fields

max_unavailable: Option<IntOrString>

An eviction is allowed if at most "maxUnavailable" pods selected by "selector" are unavailable after the eviction, i.e. even in absence of the evicted pod. For example, one can prevent all voluntary evictions by specifying 0. This is a mutually exclusive setting with "minAvailable".

min_available: Option<IntOrString>

An eviction is allowed if at least "minAvailable" pods selected by "selector" will still be available after the eviction, i.e. even in the absence of the evicted pod. So for example you can prevent all voluntary evictions by specifying "100%".

selector: Option<LabelSelector>

Label query over pods whose evictions are managed by the disruption budget.

Trait Implementations

impl Clone for PodDisruptionBudgetSpec[src]

fn clone_from(&mut self, source: &Self)
1.0.0
[src]

Performs copy-assignment from source. Read more

impl PartialEq<PodDisruptionBudgetSpec> for PodDisruptionBudgetSpec[src]

impl Default for PodDisruptionBudgetSpec[src]

impl Debug for PodDisruptionBudgetSpec[src]

impl Serialize for PodDisruptionBudgetSpec[src]

impl<'de> Deserialize<'de> for PodDisruptionBudgetSpec[src]

Auto Trait Implementations

Blanket Implementations

impl<T> From for T[src]

impl<T, U> Into for T where
    U: From<T>, 
[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

impl<T, U> TryFrom for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T> Borrow for T where
    T: ?Sized
[src]

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> BorrowMut for T where
    T: ?Sized
[src]

impl<T, U> TryInto for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.

impl<T> DeserializeOwned for T where
    T: Deserialize<'de>, 
[src]