Skip to content
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
fixup! hotfix(scaletest/terraform): fix prometheus namespace deps, di…
…sable auto-upgrade
  • Loading branch information
johnstcn committed Jul 13, 2023
commit c0218dde6e77d8e83288f8e30e0883f18db29ead
6 changes: 6 additions & 0 deletions scaletest/terraform/gcp_cluster.tf
Original file line number Diff line number Diff line change
Expand Up @@ -46,6 +46,9 @@ resource "google_container_node_pool" "coder" {
project = var.project_id
cluster = google_container_cluster.primary.name
node_count = var.state == "stopped" ? 0 : var.nodepool_size_coder
management {
auto_upgrade = false
}
node_config {
oauth_scopes = [
"https://www.googleapis.com/auth/logging.write",
Expand Down Expand Up @@ -76,6 +79,9 @@ resource "google_container_node_pool" "workspaces" {
project = var.project_id
cluster = google_container_cluster.primary.name
node_count = var.state == "stopped" ? 0 : var.nodepool_size_workspaces
management {
auto_upgrade = false
}
node_config {
oauth_scopes = [
"https://www.googleapis.com/auth/logging.write",
Expand Down