From 60830d1b2c6b27286166b2fd637001be7870691f Mon Sep 17 00:00:00 2001 From: Nathan Broadbent Date: Thu, 10 Sep 2026 12:47:25 +1200 Subject: [PATCH] Lower gateway CPU/memory reservation to 50m / 128MB Container Insights over 30 days shows the gateway peaking at 21m CPU and 18MB on both US and EU against a 256m / 256MB reservation. Requests only reserve node capacity and were helping keep every node above the cluster autoscaler's 50% scale-down threshold. Claude-Session: https://claude.ai/code/session_01R2itDKW8THGwwopBkoHxS8 --- convox.yml | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/convox.yml b/convox.yml index 122cf700..42101bf3 100644 --- a/convox.yml +++ b/convox.yml @@ -41,8 +41,10 @@ services: port: 8080 scale: count: 1 - cpu: 256 - memory: 256 + # Requests reserve node capacity; 30-day peak usage is ~21m CPU / 18MB. + # Memory is also the OOM limit under convox, so keep some headroom. + cpu: 50 + memory: 128 sticky: true volumes: [] annotations: