Skip to content

Commit

Permalink
fix: update cluster node type and capacity to meet reservation
Browse files Browse the repository at this point in the history
  • Loading branch information
all4code committed Dec 11, 2023
1 parent 072380d commit 62bb273
Showing 1 changed file with 8 additions and 8 deletions.
16 changes: 8 additions & 8 deletions platform/terraform/modules/cloud_azure/variables.tf
Original file line number Diff line number Diff line change
Expand Up @@ -41,20 +41,20 @@ variable "cluster_version" {
variable "node_groups" {
type = list(object({
name = optional(string, "default")
instance_types = optional(list(string), ["Standard_B2s"])
instance_types = optional(list(string), ["Standard_B2ms"])
capacity_type = optional(string, "Regular")
min_size = optional(number, 5)
max_size = optional(number, 9)
desired_size = optional(number, 7)
min_size = optional(number, 3)
max_size = optional(number, 5)
desired_size = optional(number, 3)
}))
default = [
{
name = "default"
instance_types = ["Standard_B2s"]
instance_types = ["Standard_B2ms"]
capacity_type = "on_demand"
min_size = 5
max_size = 9
desired_size = 7
min_size = 3
max_size = 5
desired_size = 3
}
]
}
Expand Down

0 comments on commit 62bb273

Please sign in to comment.