Skip to content

Commit

Permalink
try to fix quotas limit
Browse files Browse the repository at this point in the history
  • Loading branch information
Khagou committed Mar 5, 2024
1 parent 8e65d1e commit 7e3f179
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions terraform/cluster/cluster.tf
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ resource "google_container_cluster" "primary" {
resource_limits {
resource_type = "cpu"
minimum = 1
maximum = 10
maximum = 8
}

resource_limits {
Expand All @@ -42,10 +42,10 @@ resource "google_container_node_pool" "primary_preemptible_nodes" {
"https://www.googleapis.com/auth/cloud-platform"
]
disk_type = "pd-standard"
disk_size_gb = 25
disk_size_gb = 10
}
autoscaling {
min_node_count = 2
min_node_count = 1
max_node_count = 4
}
}

0 comments on commit 7e3f179

Please sign in to comment.