forked from kubernetes-retired/kube-aws
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Allow for HPA Autoscaling delay times to be configured in cluster.yaml (
#10) * Allow for HPA Autoscaling delay times to be configured in cluster.yaml * Reformat
- Loading branch information
Daniel Whelan
authored
Feb 6, 2018
1 parent
51808b8
commit 9adc47b
Showing
4 changed files
with
37 additions
and
13 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
# HPA Autoscaling | ||
|
||
The controller-manager manages the autoscaling of pods across the cluster. | ||
It uses the following parameters to manage the cooldown/delays. | ||
|
||
- --horizontal-pod-autoscaler-downscale-delay (default 5m0s) | ||
- --horizontal-pod-autoscaler-upscale-delay (default 3m0s) | ||
|
||
For example if you want to override these values you can do the following: | ||
```yaml | ||
experimental: | ||
horizontalPodAutoscalerDownscaleDelay: 1m0s | ||
horizontalPodAutoscalerUpscaleDelay: 30s | ||
``` |