[−][src]Struct k8s_openapi::api::apps::v1::RollingUpdateDeployment
Spec to control the desired behavior of rolling update.
Fields
max_surge: Option<IntOrString>
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 ReplicaSet 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 ReplicaSet can be scaled up further, ensuring that total number of pods running at any time during the update is at most 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 ReplicaSet can be scaled down to 70% of desired pods immediately when the rolling update starts. Once new pods are ready, old ReplicaSet can be scaled down further, followed by scaling up the new ReplicaSet, 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]
pub fn clone(&self) -> RollingUpdateDeployment
[src]
pub fn clone_from(&mut self, source: &Self)
1.0.0[src]
impl Debug for RollingUpdateDeployment
[src]
impl Default for RollingUpdateDeployment
[src]
pub fn default() -> RollingUpdateDeployment
[src]
impl<'de> Deserialize<'de> for RollingUpdateDeployment
[src]
pub fn deserialize<D>(deserializer: D) -> Result<Self, D::Error> where
D: Deserializer<'de>,
[src]
D: Deserializer<'de>,
impl PartialEq<RollingUpdateDeployment> for RollingUpdateDeployment
[src]
pub fn eq(&self, other: &RollingUpdateDeployment) -> bool
[src]
pub fn ne(&self, other: &RollingUpdateDeployment) -> bool
[src]
impl Serialize for RollingUpdateDeployment
[src]
impl StructuralPartialEq for RollingUpdateDeployment
[src]
Auto Trait Implementations
impl RefUnwindSafe for RollingUpdateDeployment
[src]
impl Send for RollingUpdateDeployment
[src]
impl Sync for RollingUpdateDeployment
[src]
impl Unpin for RollingUpdateDeployment
[src]
impl UnwindSafe for RollingUpdateDeployment
[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>,