Class DeploymentStrategyRollingUpdateOptions.Jsii$Proxy
- java.lang.Object
-
- software.amazon.jsii.JsiiObject
-
- org.cdk8s.plus23.DeploymentStrategyRollingUpdateOptions.Jsii$Proxy
-
- All Implemented Interfaces:
DeploymentStrategyRollingUpdateOptions,software.amazon.jsii.JsiiSerializable
- Enclosing interface:
- DeploymentStrategyRollingUpdateOptions
@Stability(Stable) @Internal public static final class DeploymentStrategyRollingUpdateOptions.Jsii$Proxy extends software.amazon.jsii.JsiiObject implements DeploymentStrategyRollingUpdateOptions
An implementation forDeploymentStrategyRollingUpdateOptions
-
-
Nested Class Summary
-
Nested classes/interfaces inherited from class software.amazon.jsii.JsiiObject
software.amazon.jsii.JsiiObject.InitializationMode
-
Nested classes/interfaces inherited from interface org.cdk8s.plus23.DeploymentStrategyRollingUpdateOptions
DeploymentStrategyRollingUpdateOptions.Builder, DeploymentStrategyRollingUpdateOptions.Jsii$Proxy
-
-
Constructor Summary
Constructors Modifier Constructor Description protectedJsii$Proxy(DeploymentStrategyRollingUpdateOptions.Builder builder)Constructor that initializes the object based on literal property values passed by theDeploymentStrategyRollingUpdateOptions.Builder.protectedJsii$Proxy(software.amazon.jsii.JsiiObjectRef objRef)Constructor that initializes the object based on values retrieved from the JsiiObject.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description com.fasterxml.jackson.databind.JsonNode$jsii$toJson()booleanequals(Object o)PercentOrAbsolutegetMaxSurge()The maximum number of pods that can be scheduled above the desired number of pods.PercentOrAbsolutegetMaxUnavailable()The maximum number of pods that can be unavailable during the update.inthashCode()
-
-
-
Constructor Detail
-
Jsii$Proxy
protected Jsii$Proxy(software.amazon.jsii.JsiiObjectRef objRef)
Constructor that initializes the object based on values retrieved from the JsiiObject.- Parameters:
objRef- Reference to the JSII managed object.
-
Jsii$Proxy
protected Jsii$Proxy(DeploymentStrategyRollingUpdateOptions.Builder builder)
Constructor that initializes the object based on literal property values passed by theDeploymentStrategyRollingUpdateOptions.Builder.
-
-
Method Detail
-
getMaxSurge
public final PercentOrAbsolute getMaxSurge()
Description copied from interface:DeploymentStrategyRollingUpdateOptionsThe 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%). Absolute number is calculated from percentage by rounding up. This can not be 0 if
maxUnavailableis 0.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%'
- Specified by:
getMaxSurgein interfaceDeploymentStrategyRollingUpdateOptions
-
getMaxUnavailable
public final PercentOrAbsolute getMaxUnavailable()
Description copied from interface:DeploymentStrategyRollingUpdateOptionsThe 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
maxSurgeis 0.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%'
- Specified by:
getMaxUnavailablein interfaceDeploymentStrategyRollingUpdateOptions
-
$jsii$toJson
@Internal public com.fasterxml.jackson.databind.JsonNode $jsii$toJson()
- Specified by:
$jsii$toJsonin interfacesoftware.amazon.jsii.JsiiSerializable
-
-