Skip to content

Commit

Permalink
Default instance warm up to 15 mins for step scaling (#1464)
Browse files Browse the repository at this point in the history
* default instance warm up to 15 mins for step scaling
  • Loading branch information
knguyen100000010 authored Feb 22, 2024
1 parent 121cfe3 commit 9bb8b07
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions deploy-board/deploy_board/templates/groups/asg_policy.tmpl
Original file line number Diff line number Diff line change
Expand Up @@ -276,14 +276,14 @@
<label for="instanceWarmup" class="col-xs-1 deployToolTip control-label"
data-toggle="tooltip"
title="The estimated time, in minutes, until a newly launched instance can contribute to the CloudWatch metrics.">
Instance Warmup (minutes):
Instance Warmup (>= 15 recommended) (minutes):
</label>
</div>
<div class="input-group">
{% if stepScalingPolicy and stepScalingPolicy.instanceWarmup %}
<input class="form-control" name="instanceWarmup" required="true" size="50" type="number" min="0" value="{{ stepScalingPolicy.instanceWarmup }}">
{% else %}
<input class="form-control" name="instanceWarmup" required="true" size="50" type="number" min="0" placeholder="0">
<input class="form-control" name="instanceWarmup" required="true" size="50" type="number" min="0" placeholder="15">
{% endif %}
</div>
</div>
Expand Down

0 comments on commit 9bb8b07

Please sign in to comment.