AWS Deployment Failed due to “HEALTH_CONSTRAINTS”

2019-05-10 15:36发布

I am working on a scenario, where I need to push the code from a GIT repository to AWS Instance. To achieve this I am using AWS CodeDeploy feature. But in the final step of the process to deploy the code, I am receiving the below error.

Deployment Failed The overall deployment failed because too many individual instances failed deployment, too few healthy instances are available for deployment, or some instances in your deployment group are experiencing problems. (Error code: HEALTH_CONSTRAINTS)

4条回答
淡お忘
2楼-- · 2019-05-10 16:19

The immediate reason you get that error is when CodeDeploy cannot continue the deployment as too many instances is unhealthy. The "minimumHealthyHosts" plays a part in determining the exact number. You can check that parameter [1][2].

Having said that, for a start, it is easier if set that value to low (i.e. almost 0). Or select the "AllAtOnce" deployment config.

[1] http://docs.aws.amazon.com/cli/latest/reference/deploy/get-deployment-config.html

[2] http://docs.aws.amazon.com/codedeploy/latest/userguide/host-health.html

查看更多
叛逆
3楼-- · 2019-05-10 16:23

I repeatedly get same error from CodeDeploy tool, if I forget to install CodeDeploy agent to the instance. Just in case here is the link to the documentation: http://docs.aws.amazon.com/codedeploy/latest/userguide/how-to-run-agent-install.html

查看更多
混吃等死
4楼-- · 2019-05-10 16:23

Just to add to @spro/@mathieu-m-gosselin 's answer, even though aws now allows to attach/replace an IAM role on a running instance but it is not enough for this use case , you have to reboot the instance after you attach/replace a new IAM role.

查看更多
做个烂人
5楼-- · 2019-05-10 16:33

You can see this error if the EC2 instance does not have the correct IAM role. Create an IAM role with the policy "AmazonEC2RoleforAWSCodeDeploy". You can't add an IAM role to an existing instance, so you'll have to launch a fresh one.

Also make sure you've installed the CodeDeploy agent for the correct region, e.g. for us-east-1:

apt-get -y install awscli ruby2.0
aws s3 cp s3://aws-codedeploy-us-east-1/latest/install . --region us-east-1
chmod +x ./install
./install auto

http://docs.aws.amazon.com/codedeploy/latest/userguide/how-to-set-up-new-instance.html

查看更多
登录 后发表回答