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)
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
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
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.
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
:http://docs.aws.amazon.com/codedeploy/latest/userguide/how-to-set-up-new-instance.html