Skip to content

Commit

Permalink
default nodepool changes
Browse files Browse the repository at this point in the history
  • Loading branch information
pk0331 committed Aug 26, 2022
1 parent 4a7e6e4 commit c44c766
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions modules/private-cluster/cluster.tf
Original file line number Diff line number Diff line change
Expand Up @@ -146,6 +146,8 @@ resource "google_container_cluster" "primary" {
image_type = lookup(var.node_pools[0], "image_type", "COS_CONTAINERD")
machine_type = lookup(var.node_pools[0], "machine_type", "e2-medium")
min_cpu_platform = lookup(var.node_pools[0], "min_cpu_platform", "")
disk_size_gb = lookup(var.node_pools[0], "disk_size_gb", 30)
disk_type = lookup(var.node_pools[0], "disk_type", "pd-balanced")
dynamic "gcfs_config" {
for_each = lookup(var.node_pools[0], "enable_gcfs", false) ? [true] : []
content {
Expand Down

0 comments on commit c44c766

Please sign in to comment.