enum DeploymentStrategy
Language | Type name |
---|---|
![]() | Amazon.CDK.AWS.ECS.DeploymentStrategy |
![]() | github.com/aws/aws-cdk-go/awscdk/v2/awsecs#DeploymentStrategy |
![]() | software.amazon.awscdk.services.ecs.DeploymentStrategy |
![]() | aws_cdk.aws_ecs.DeploymentStrategy |
![]() | aws-cdk-lib » aws_ecs » DeploymentStrategy |
The deployment stratergy to use for ECS controller.
Example
import * as lambda from 'aws-cdk-lib/aws-lambda';
declare const cluster: ecs.Cluster;
declare const taskDefinition: ecs.TaskDefinition;
declare const lambdaHook: lambda.Function;
declare const blueTargetGroup: elbv2.ApplicationTargetGroup;
declare const greenTargetGroup: elbv2.ApplicationTargetGroup;
declare const prodListenerRule: elbv2.ApplicationListenerRule;
const service = new ecs.FargateService(this, 'Service', {
cluster,
taskDefinition,
deploymentStrategy: ecs.DeploymentStrategy.BLUE_GREEN,
});
service.addLifecycleHook(new ecs.DeploymentLifecycleLambdaTarget(lambdaHook, 'PreScaleHook', {
lifecycleStages: [ecs.DeploymentLifecycleStage.PRE_SCALE_UP],
}));
const target = service.loadBalancerTarget({
containerName: 'nginx',
containerPort: 80,
protocol: ecs.Protocol.TCP,
alternateTarget: new ecs.AlternateTarget('AlternateTarget', {
alternateTargetGroup: greenTargetGroup,
productionListener: ecs.ListenerRuleConfiguration.applicationListenerRule(prodListenerRule),
}),
});
target.attachToApplicationTargetGroup(blueTargetGroup);
Members
Name | Description |
---|---|
ROLLING | Rolling update deployment. |
BLUE_GREEN | Blue/green deployment. |
ROLLING
Rolling update deployment.
BLUE_GREEN
Blue/green deployment.