Skip to content

Commit

Permalink
Lower instance & capacity prefs in non-prod
Browse files Browse the repository at this point in the history
  • Loading branch information
dj-maisy committed Jan 21, 2025
1 parent 794728c commit 90377ec
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions terraform/deployments/cluster-infrastructure/variables.tf
Original file line number Diff line number Diff line change
Expand Up @@ -90,7 +90,7 @@ variable "arm_workers_size_max" {
variable "workers_instance_types" {
type = list(string)
description = "List of instance types for the managed node group, in order of preference. The second and subsequent preferences are only relevant when using spot instances."
default = ["m6i.4xlarge", "m6a.4xlarge", "m6i.2xlarge", "m6a.2xlarge"]
default = ["r7i.large", "r7a.large", "m7i-flex.xlarge", "m6a.xlarge", "m6i.xlarge"]
}

variable "workers_default_capacity_type" {
Expand All @@ -102,19 +102,19 @@ variable "workers_default_capacity_type" {
variable "workers_size_desired" {
type = number
description = "Desired capacity of managed node autoscale group."
default = 6
default = 0
}

variable "workers_size_min" {
type = number
description = "Min capacity of managed node autoscale group."
default = 3
default = 0
}

variable "workers_size_max" {
type = number
description = "Max capacity of managed node autoscale group."
default = 12
default = 6
}

variable "node_disk_size" {
Expand Down

0 comments on commit 90377ec

Please sign in to comment.