Skip to content

Commit b3724b5

Browse files
[CI] Double RAM in Service Pool (#546)
The operational metrics CronJob was having trouble scheduling due to memory pressure. Change from highcpu instances to standard instances which increases the amount of RAM from 4GB to 16GB per instance. This costs slightly more, but the difference is negligible. If we end up being that concerned, we can use custom sized instances and move to only 8GB of RAM, but for now this should be fine.
1 parent ae3d4a2 commit b3724b5

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

premerge/gke_cluster/main.tf

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ resource "google_container_node_pool" "llvm_premerge_linux_service" {
3939
node_locations = var.service_node_pool_locations
4040

4141
node_config {
42-
machine_type = "e2-highcpu-4"
42+
machine_type = "e2-standard-4"
4343

4444
workload_metadata_config {
4545
mode = "GKE_METADATA"

0 commit comments

Comments
 (0)