Package org.cdk8s.plus24.k8s
Interface DeploymentStrategy
-
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
DeploymentStrategy.Jsii$Proxy
@Generated(value="jsii-pacmak/1.82.0 (build 2d2ddd7)", date="2023-05-25T02:26:40.774Z") @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 class
DeploymentStrategy.Builder
A builder forDeploymentStrategy
static class
DeploymentStrategy.Jsii$Proxy
An implementation forDeploymentStrategy
-
Method Summary
All Methods Static Methods Instance Methods Default Methods Modifier and Type Method Description static DeploymentStrategy.Builder
builder()
default RollingUpdateDeployment
getRollingUpdate()
Rolling update config params.default String
getType()
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.Builder
ofDeploymentStrategy
-
-