Skip to content
This repository has been archived by the owner on Jun 6, 2023. It is now read-only.

Make Cluster Autoscaler more configurable #81

Merged
merged 1 commit into from
Feb 21, 2022
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions aws/cluster/variables.tf
Original file line number Diff line number Diff line change
Expand Up @@ -850,6 +850,8 @@ variable "cluster-autoscaler" {
balanceSimilarNodeGroups = bool
scaleDownUtilizationThreshold = string
scaleDownDelayAfterAdd = string
skipNodesWithLocalStorage = bool
skipNodesWithSystemPods = bool
cpuRequest = string
memoryRequest = string
image = string
Expand All @@ -860,6 +862,8 @@ variable "cluster-autoscaler" {
balanceSimilarNodeGroups = false
scaleDownUtilizationThreshold = "0.5"
scaleDownDelayAfterAdd = "10m0s"
skipNodesWithLocalStorage = false
skipNodesWithSystemPods = true
cpuRequest = "100m"
memoryRequest = "300Mi"
image = null
Expand Down