Improve description of detaching instances

This commit is contained in:
John Gardiner Myers 2020-09-01 21:47:05 -07:00
parent 86cbd29632
commit 77d5f12315
1 changed files with 3 additions and 1 deletions

View File

@ -113,7 +113,9 @@ update. Instead of first draining and terminating an instance and then creating
it effectively first creates a new instance and then drains and terminates the old one.
Surging is implemented by "detaching" instances, making them not count toward the desired
number of instances in the instance group. The detached instances are updated last;
number of instances in the instance group. This causes the cloud provider to create new
instances in order to satisfy the group's desired number.
The detached instances are drained and terminated last;
when they are terminated the cloud provider does not replace them.
The `maxSurge` is the maximum number of extra instances that can be created during the update.