Skip to content

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
  • Loading branch information
Damian Czaja committed Oct 21, 2024
1 parent de7754e commit e67d1ae
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions examples/gke/gke_cluster_autoscaler_policies/gke.tf
Original file line number Diff line number Diff line change
Expand Up @@ -21,15 +21,15 @@ module "gke" {
name = "default-node-pool"
machine_type = "e2-standard-2"
min_count = 0
max_count = 1
max_count = 10
local_ssd_count = 0
disk_size_gb = 100
disk_type = "pd-standard"
image_type = "COS_CONTAINERD"
auto_repair = true
auto_upgrade = true
preemptible = false
initial_node_count = 1 # has to be >=2 to successfully deploy CAST AI controller
initial_node_count = 2 # has to be >=2 to successfully deploy CAST AI controller
},
]
}

0 comments on commit e67d1ae

Please sign in to comment.