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 8db4a5f commit 8e65d1e
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 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 = 100
maximum = 10
}

resource_limits {
Expand All @@ -41,7 +41,7 @@ resource "google_container_node_pool" "primary_preemptible_nodes" {
oauth_scopes = [
"https://www.googleapis.com/auth/cloud-platform"
]
disk_type = pd-standard
disk_type = "pd-standard"
disk_size_gb = 25
}
autoscaling {
Expand Down

0 comments on commit 8e65d1e

Please sign in to comment.