Home > Software engineering >  How to enable blue/green deployment with CircleCI to ECS?
How to enable blue/green deployment with CircleCI to ECS?

Time:02-01

I'm using CircleCI's aws-ecs orb to deploy to ecs. As far as I know the default deployment type is rolling update.

I searched for a solution, however the solutions are only for AWS CodeDeploy. The CircleCI docs show support for blue/green deployment, but in the config I cannot set the deployment type.

How to do that?

CodePudding user response:

Here is the example that orb has. You could also use CodeDeploy to enable blue-green deployment, orb supports CodeDeploy via deployment-controller parameter

  • Related