Struct k8s_openapi::v1_9::api::apps::v1::RollingUpdateDeployment[][src]

pub struct RollingUpdateDeployment {
    pub max_surge: Option<IntOrString>,
    pub max_unavailable: Option<IntOrString>,
}

Spec to control the desired behavior of rolling update.

Fields

The maximum number of pods that can be scheduled above the desired number of pods. Value can be an absolute number (ex: 5) or a percentage of desired pods (ex: 10%). This can not be 0 if MaxUnavailable is 0. Absolute number is calculated from percentage by rounding up. Defaults to 25%. Example: when this is set to 30%, the new RC can be scaled up immediately when the rolling update starts, such that the total number of old and new pods do not exceed 130% of desired pods. Once old pods have been killed, new RC can be scaled up further, ensuring that total number of pods running at any time during the update is atmost 130% of desired pods.

The maximum number of pods that can be unavailable during the update. Value can be an absolute number (ex: 5) or a percentage of desired pods (ex: 10%). Absolute number is calculated from percentage by rounding down. This can not be 0 if MaxSurge is 0. Defaults to 25%. Example: when this is set to 30%, the old RC can be scaled down to 70% of desired pods immediately when the rolling update starts. Once new pods are ready, old RC can be scaled down further, followed by scaling up the new RC, ensuring that the total number of pods available at all times during the update is at least 70% of desired pods.

Trait Implementations

impl Clone for RollingUpdateDeployment
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl Debug for RollingUpdateDeployment
[src]

Formats the value using the given formatter. Read more

impl Default for RollingUpdateDeployment
[src]

Returns the "default value" for a type. Read more

impl PartialEq for RollingUpdateDeployment
[src]

This method tests for self and other values to be equal, and is used by ==. Read more

This method tests for !=.

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

Deserialize this value from the given Serde deserializer. Read more

impl Serialize for RollingUpdateDeployment
[src]

Serialize this value into the given Serde serializer. Read more

Auto Trait Implementations