Skip to content

Commit 7406995

Browse files
[CI] Bump service pool node count/node spec
This patch bumps the number of nodes in the service pool from 2 to 3 and additionally increases the spec of the machines from e2-small to e2-highcpu-4. We were running into DNS issues due to a downed pod that we believe was caused by a lack of resources in the service pool. Adding an additional pod should help mostly with redundancy but also with capacity in addition to the capacity increase within each node.
1 parent 134dc14 commit 7406995

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

premerge/main.tf

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -63,10 +63,10 @@ resource "google_container_node_pool" "llvm_premerge_linux_service" {
6363
name = "llvm-premerge-linux-service"
6464
location = "us-central1-a"
6565
cluster = google_container_cluster.llvm_premerge.name
66-
node_count = 2
66+
node_count = 3
6767

6868
node_config {
69-
machine_type = "e2-small"
69+
machine_type = "e2-highcpu-4"
7070
}
7171
}
7272

0 commit comments

Comments
 (0)