Package org.cdk8s.plus28.k8s
Interface DeploymentStrategy
-
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
DeploymentStrategy.Jsii$Proxy
@Generated(value="jsii-pacmak/1.102.0 (build e354887)", date="2024-08-03T12:13:25.678Z") @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
-
-