Skip to content

Commit

Permalink
Merge pull request #1 from argonautdev/gke-np-changes
Browse files Browse the repository at this point in the history
default nodepool changes
  • Loading branch information
guptaankit015 authored Aug 26, 2022
2 parents 4a7e6e4 + c44c766 commit 56e2f50
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 56e2f50

Please sign in to comment.