Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[QOLDEV-819] skip deploying to instances that are no longer running #527

Merged
merged 1 commit into from
May 2, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions chef-deploy.sh
Original file line number Diff line number Diff line change
Expand Up @@ -150,6 +150,9 @@ deploy () {
INSTANCE_REFRESH_ID=$(aws autoscaling start-instance-refresh $REGION_SNIPPET --auto-scaling-group-name $ASG_NAME --query "InstanceRefreshId" --output text)
fi
for instance in $INSTANCE_IDS; do
# double-check that instance is still running
INSTANCE_STATE=$(aws ec2 describe-instances --filters Name=instance-id,Values=$instance --query "Reservations[].Instances[0].State.Name" --output text)
if [ "$INSTANCE_STATE" != "running" ]; then continue; fi
if [ "$ELB_NAME" != "" ]; then
OUTPUT=$(aws elb deregister-instances-from-load-balancer --load-balancer-name "$ELB_NAME" --instances "$instance" --query "Instances[].InstanceId" --output text)
debug "Deregistered instance $instance from load balancer $ELB_NAME, resulting registered instances: $OUTPUT"
Expand Down
Loading