Skip to content

Commit

Permalink
updated machine types in gke cluster
Browse files Browse the repository at this point in the history
  • Loading branch information
stevenplatt committed Nov 13, 2024
1 parent af5efab commit 97e74b2
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions spartan/terraform/gke-cluster/main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -107,7 +107,7 @@ resource "google_container_node_pool" "primary_nodes" {

# Node configuration
node_config {
machine_type = "n1-standard-16"
machine_type = "t2d-standard-16"

service_account = google_service_account.gke_sa.email
oauth_scopes = [
Expand Down Expand Up @@ -142,7 +142,7 @@ resource "google_container_node_pool" "spot_nodes" {

# Node configuration
node_config {
machine_type = "n1-standard-16"
machine_type = "t2d-standard-16"
spot = true

service_account = google_service_account.gke_sa.email
Expand Down

0 comments on commit 97e74b2

Please sign in to comment.