Skip to content

Commit

Permalink
chore: Increase node pool count and don't use a release channel (#11687)
Browse files Browse the repository at this point in the history
PR to move away from using release channels
  • Loading branch information
PhilWindle authored Feb 3, 2025
1 parent 5c6a48a commit 65a3f11
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions spartan/terraform/gke-cluster/cluster/main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -10,11 +10,11 @@ resource "google_container_cluster" "primary" {

# Kubernetes version
min_master_version = var.node_version

release_channel {
channel = "STABLE"
channel = "UNSPECIFIED"
}


# Network configuration
network = "default"
subnetwork = "default"
Expand All @@ -37,7 +37,7 @@ resource "google_container_node_pool" "aztec_nodes_2core_ssd" {
# Enable autoscaling
autoscaling {
min_node_count = 0
max_node_count = 256
max_node_count = 512
}

# Node configuration
Expand Down

0 comments on commit 65a3f11

Please sign in to comment.