Skip to content

fix(scaletest/terraform): fix prometheus namespace deps, disable auto-upgrade #8490

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 2 commits into from
Jul 13, 2023
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