Skip to content

Commit

Permalink
try fix quotas 2
Browse files Browse the repository at this point in the history
  • Loading branch information
Khagou committed Mar 6, 2024
1 parent e782def commit d87d41b
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions terraform/cluster/cluster.tf
Original file line number Diff line number Diff line change
Expand Up @@ -12,20 +12,20 @@ resource "google_container_cluster" "primary" {
}
node_config {
disk_type = "pd-standard"
disk_size_gb = 20
disk_size_gb = 100
}
cluster_autoscaling {
enabled = true
resource_limits {
resource_type = "cpu"
minimum = 1
minimum = 2
maximum = 8
}

resource_limits {
resource_type = "memory"
minimum = 1000
maximum = 10000
maximum = 100000
}
}

Expand All @@ -46,7 +46,7 @@ resource "google_container_node_pool" "primary_preemptible_nodes" {
"https://www.googleapis.com/auth/cloud-platform"
]
disk_type = "pd-standard"
disk_size_gb = 20
disk_size_gb = 100
}
autoscaling {
min_node_count = 1
Expand Down

0 comments on commit d87d41b

Please sign in to comment.