Package org.cdk8s.plus25.k8s
Interface DeploymentStrategy
-
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
DeploymentStrategy.Jsii$Proxy
@Generated(value="jsii-pacmak/1.88.0 (build eaabd08)", date="2023-09-11T06:17:58.510Z") @Stability(Stable) public interface DeploymentStrategy extends software.amazon.jsii.JsiiSerializable
DeploymentStrategy describes how to replace existing pods with new ones.
-
-
Nested Class Summary
Nested Classes Modifier and Type Interface Description static classDeploymentStrategy.BuilderA builder forDeploymentStrategystatic classDeploymentStrategy.Jsii$ProxyAn implementation forDeploymentStrategy
-
Method Summary
All Methods Static Methods Instance Methods Default Methods Modifier and Type Method Description static DeploymentStrategy.Builderbuilder()default RollingUpdateDeploymentgetRollingUpdate()Rolling update config params.default StringgetType()Type of deployment.
-
-
-
Method Detail
-
getRollingUpdate
@Stability(Stable) @Nullable default RollingUpdateDeployment getRollingUpdate()
Rolling update config params.Present only if DeploymentStrategyType = RollingUpdate.
-
getType
@Stability(Stable) @Nullable default String getType()
Type of deployment.Can be "Recreate" or "RollingUpdate". Default is RollingUpdate.
Default: RollingUpdate.
-
builder
@Stability(Stable) static DeploymentStrategy.Builder builder()
- Returns:
- a
DeploymentStrategy.BuilderofDeploymentStrategy
-
-