From ba4802fb5924e135524508d386a7b299fff22fe6 Mon Sep 17 00:00:00 2001 From: jgrusewski Date: Wed, 25 Feb 2026 16:05:19 +0100 Subject: [PATCH] infra(kapsule): upgrade CI build pool from GP1-XS to GP1-L (32 vCPU, 128GB) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Autoscaling pool for CI runner pods — scales to zero when idle. 32 cores dramatically improves parallel Rust compilation times. Also cleaned up the manually-created ci-build-v2 GP1-S pool. Co-Authored-By: Claude Opus 4.6 --- infra/live/production/kapsule/terragrunt.hcl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/infra/live/production/kapsule/terragrunt.hcl b/infra/live/production/kapsule/terragrunt.hcl index ad4524b23..1bd3fd3c0 100644 --- a/infra/live/production/kapsule/terragrunt.hcl +++ b/infra/live/production/kapsule/terragrunt.hcl @@ -27,6 +27,6 @@ inputs = { # CI build pool (ephemeral runner pods, scale-to-zero) enable_ci_build_pool = true - ci_build_type = "GP1-XS" + ci_build_type = "GP1-L" ci_build_max_size = 2 }