Skip to content

Commit

Permalink
updated cluster
Browse files Browse the repository at this point in the history
  • Loading branch information
nkotibiot committed Mar 15, 2022
1 parent 2c4de3e commit 7a8f866
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions cloud/gcp/gks.tf
Original file line number Diff line number Diff line change
Expand Up @@ -21,11 +21,11 @@ resource "google_container_cluster" "biot" {
resource "google_container_node_pool" "node_pool" {
name = "${var.gcp_project_id}-node-pool"
location = var.gcp_region
cluster = var.gcp_project_id
cluster = google_container_cluster.biot.name
node_count = var.gke_num_nodes

node_config {
preemptible = true
machine_type = "e2-medium"
}
}
}

0 comments on commit 7a8f866

Please sign in to comment.