Skip to content

Commit

Permalink
fix(kubernetes): replicas targetCPUUtilizationPercentage can be large…
Browse files Browse the repository at this point in the history
…r than 100% (#3467)
  • Loading branch information
hekike authored and lwander committed Apr 4, 2017
1 parent e96589f commit 87b8d05
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -53,9 +53,9 @@
</div>
<div class="col-md-3">
<div class="input-group">
<!-- Current utilization is based on requested CPU: it can be lager than 100% -->
<input type="number" class="form-control input-sm" name="details" ng-model="command.scalingPolicy.cpuUtilization.target"
min="0"
max="100"/>
min="0" />
<span class="input-group-addon">%</span>
</div>
</div>
Expand Down

0 comments on commit 87b8d05

Please sign in to comment.