Interface RollingUpdateDeployment
-
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
RollingUpdateDeployment.Jsii$Proxy
@Generated(value="jsii-pacmak/1.85.0 (build 08ee592)", date="2023-07-25T00:18:39.496Z") @Stability(Stable) public interface RollingUpdateDeployment extends software.amazon.jsii.JsiiSerializable
Spec to control the desired behavior of rolling update.
-
-
Nested Class Summary
Nested Classes Modifier and Type Interface Description static class
RollingUpdateDeployment.Builder
A builder forRollingUpdateDeployment
static class
RollingUpdateDeployment.Jsii$Proxy
An implementation forRollingUpdateDeployment
-
Method Summary
All Methods Static Methods Instance Methods Default Methods Modifier and Type Method Description static RollingUpdateDeployment.Builder
builder()
default IntOrString
getMaxSurge()
The maximum number of pods that can be scheduled above the desired number of pods.default IntOrString
getMaxUnavailable()
The maximum number of pods that can be unavailable during the update.
-
-
-
Method Detail
-
getMaxSurge
@Stability(Stable) @Nullable default IntOrString getMaxSurge()
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.
Default: 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.
-
getMaxUnavailable
@Stability(Stable) @Nullable default IntOrString getMaxUnavailable()
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.
Default: 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.
-
builder
@Stability(Stable) static RollingUpdateDeployment.Builder builder()
- Returns:
- a
RollingUpdateDeployment.Builder
ofRollingUpdateDeployment
-
-