-
Notifications
You must be signed in to change notification settings - Fork 784
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
ELBv2 examples don't include suspending or resuming ASG processes #53
Comments
Hi, Thanks for the feedback! I'll pass this along to the team to add to the scripts. |
Is there an ETA on this? Is it a fair temporary workaround to disable dynamic autoscaling on the ASG group (scale up/down manually)? |
I am waiting for this feature for a really long time. Things get out of control when we don't suspend ASG. Any ETA, guys? |
Grew tired of waiting, hacked together a Lambda function to recreate a similar solution as long as the ELBv2 doesn't integrate with CodeDeploy. If anyone is interested, here is my Repository
|
The ELBv2 example scripts do not support suspending and resuming troublesome ASG processes but the original ELB scripts do. Update the ELBv2 `common_functions.sh` file to add this functionality. - Add a `HANDLE_PROCS` variable that denotes whether to suspend processes; defaults to false - Add a FLAGFILE implementation to keep track of which processes were suspended during the deploy and should be resumed - Update ASG decrementing to use the FLAGFILE instead of the single 'flag file' Fixes Issue aws-samples#53
The ELBv2 example scripts do not support suspending and resuming troublesome ASG processes but the original ELB scripts do. Update the ELBv2 `common_functions.sh` file to add this functionality. - Add a `HANDLE_PROCS` variable that denotes whether to suspend processes; defaults to false - Add a FLAGFILE implementation to keep track of which processes were suspended during the deploy and should be resumed - Update ASG decrementing to use the FLAGFILE instead of the single 'flag file' - Update the `README.md` to explain the ASG process suspension use case Fixes Issue aws-samples#53
The ELBv2 example scripts do not support suspending and resuming troublesome ASG processes but the original ELB scripts do. Update the ELBv2 `common_functions.sh` file to add this functionality. - Add a `HANDLE_PROCS` variable that denotes whether to suspend processes; defaults to false - Add a FLAGFILE implementation to keep track of which processes were suspended during the deploy and should be resumed - Update ASG decrementing to use the FLAGFILE instead of the single 'flag file' - Update the `README.md` to explain the ASG process suspension use case Fixes Issue aws-samples#53
I just made a pull request which adds this feature in the same way that the ELB sample scripts do. |
@Jmcfar Can you ask the team to take a look at that PR and let me know if I missed anything? |
This can be closed now 🎉 |
The ELB example has been updated to suspend/resume ASG processes. The ELBv2 examples should include these as well.
The text was updated successfully, but these errors were encountered: