Skip to content

Commit

Permalink
chore(tf): delete compute-pool-1 on staging (#1796)
Browse files Browse the repository at this point in the history
  • Loading branch information
AndrewKostka authored and deer-wmde committed Oct 15, 2024
1 parent c2fc736 commit 0e70dcc
Showing 1 changed file with 0 additions and 35 deletions.
35 changes: 0 additions & 35 deletions tf/env/staging/cluster.tf
Original file line number Diff line number Diff line change
Expand Up @@ -20,41 +20,6 @@ resource "google_container_cluster" "wbaas-2" {
}
}

resource "google_container_node_pool" "wbaas-2_compute-pool-1" {
cluster = "wbaas-2"
name = "compute-pool-1"
node_count = 3
node_locations = [
"europe-west3-a",
]
node_config {
disk_size_gb = 32
disk_type = "pd-ssd"
machine_type = "n2-standard-8"
metadata = {
"disable-legacy-endpoints" = "true"
}
oauth_scopes = [
"https://www.googleapis.com/auth/devstorage.read_only",
"https://www.googleapis.com/auth/logging.write",
"https://www.googleapis.com/auth/monitoring",
"https://www.googleapis.com/auth/service.management.readonly",
"https://www.googleapis.com/auth/servicecontrol",
"https://www.googleapis.com/auth/trace.append",
]
preemptible = false
service_account = "default"
shielded_instance_config {
enable_integrity_monitoring = true
enable_secure_boot = false
}
}
upgrade_settings {
max_surge = 1
max_unavailable = 0
}
}

resource "google_container_node_pool" "wbaas-2_compute-pool-2" {
cluster = "wbaas-2"
name = "compute-pool-2"
Expand Down

0 comments on commit 0e70dcc

Please sign in to comment.