You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
When we refresh an autoscaling group, we check if it's protected against scale in.
The function "SetASGInstanceProtection" first sets the protection to scale in on the autoscalingGroup, and then for all the instances.
If the call for protect the instances fails, deathnode will never try again to set those instances as protectedToScaleIn, leaving it in an inconsistent state.
The correct order should be:
Set all instances with protectToScaleIn
Set autoscaling group with protectToScaleIn flag
The text was updated successfully, but these errors were encountered:
When we refresh an autoscaling group, we check if it's protected against scale in.
The function "SetASGInstanceProtection" first sets the protection to scale in on the autoscalingGroup, and then for all the instances.
If the call for protect the instances fails, deathnode will never try again to set those instances as protectedToScaleIn, leaving it in an inconsistent state.
The correct order should be:
The text was updated successfully, but these errors were encountered: