[][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]

impl Debug for PodDisruptionBudgetSpec[src]

impl Default for PodDisruptionBudgetSpec[src]

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

impl PartialEq<PodDisruptionBudgetSpec> for PodDisruptionBudgetSpec[src]

impl Serialize for PodDisruptionBudgetSpec[src]

impl StructuralPartialEq for PodDisruptionBudgetSpec[src]

Auto Trait Implementations

Blanket Implementations

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

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

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

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

impl<T> From<T> for T[src]

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

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

type Owned = T

The resulting type after obtaining ownership.

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

type Error = Infallible

The type returned in the event of a conversion error.

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

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

The type returned in the event of a conversion error.