我有一个具有以下设置的自动缩放组:
- name: configure auto-scaling group
ec2_asg:
name: "{{ application_name }}-{{ application_environment }}-auto-scaling-group"
availability_zones:
- "{{ region }}a"
- "{{ region }}b"
- "{{ region }}c"
state: present
launch_config_name: "{{ application_name }}-{{ application_environment }}-launch-configuration"
min_size: 1
max_size: 2
region: "{{ region }}"
desired_capacity: 2
tags:
- environment: "{{application_environment}}"
vpc_zone_identifier:
- "{{ vpc.subnets[0].id }}"
- "{{ vpc.subnets[1].id }}"
- "{{ vpc.subnets[2].id }}"
它引发了两个ec2实例。
在这两个实例上都有一个运行nginx监听端口80的服务。我知道我不能两次使用端口80。该服务的容量为2,但我愿意在滚动更新期间运行一个。
但是,如果我更新服务和任务定义,我会收到以下错误:
ERROR: (service myapp-testing-service) was unable to place a task because no container instance met all of its requirements. The closest matching (container-instance 24d9d97e-c979-41a3-a438-212390612ae3) is already using a port required by your task. For more information, see the Troubleshooting section of the Amazon ECS Developer Guide.
确实如此,端口被阻止了。在这种情况下我想要发生的是,一个nginx-service被删除,new被占用,另一个被删除,之后被替换为新的。
我认为这是默认行为,但看起来它不是 - 或者我是否出错?
答案 0 :(得分:2)
您需要为myapp-testing-service
重新配置ECS服务配置。
将最低健康百分比设置为50。
这将允许您的服务在部署新版本时执行旧版本的RUN 1任务。