A developer is designing a deployment strategy for a containerized web application running on Amazon ECS (Fargate) behind an Application Load Balancer. The service currently runs with a desired task count of . The deployment must satisfy the following constraints:
* The application must maintain of its capacity (at least healthy tasks) during the deployment process.
* The AWS account has a strict service quota that prevents running more than concurrent tasks for this service.
* If the new container version fails to launch or fails container health checks, the deployment must automatically roll back to the previous version without manual intervention or DNS changes.
Which two configurations should the developer use to meet these requirements? (Select two.)
- Configure the ECS service rolling update parameters with a minimum healthy percent of and a maximum percent of .Cevap
- Enable the ECS deployment circuit breaker with the rollback feature enabled on the service.Cevap
- CConfigure the ECS service rolling update parameters with a minimum healthy percent of and a maximum percent of .
- DConfigure AWS CodeDeploy to perform a blue/green deployment using an ECS Canary deployment configuration.
- EConfigure an Amazon Route 53 weighted routing policy to route traffic between two separate ECS services.