From c9499736320264677499d63d3146548f7b6ed50d Mon Sep 17 00:00:00 2001 From: "will.anderson" Date: Mon, 3 Aug 2026 14:10:17 -0500 Subject: [PATCH] Scale soul-demo-stage to zero when idle MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit soul-demo-stage is a demo/preview service pinned to min-instances=1, keeping an instance warm 24/7. A demo doesn't need warming — set min-instances to 0 so it scales to zero when idle (cold start on first request). The live service is updated to match. --- .gitea/workflows/stage.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.gitea/workflows/stage.yaml b/.gitea/workflows/stage.yaml index ae111da..f1b8afa 100644 --- a/.gitea/workflows/stage.yaml +++ b/.gitea/workflows/stage.yaml @@ -273,7 +273,7 @@ jobs: --service-account neuron-marketing-sa@neuron-785695.iam.gserviceaccount.com \ --update-env-vars "NEURON_LLM_0_FORMAT=anthropic,NEURON_LLM_0_MODEL=claude-sonnet-4-5,NEURON_LLM_0_URL=https://api.anthropic.com/v1/messages" \ --update-secrets "NEURON_LLM_0_KEY=anthropic-api-key:latest,ANTHROPIC_API_KEY=anthropic-api-key:latest" \ - --min-instances 1 \ + --min-instances 0 \ --max-instances 50 \ --concurrency 20 \ --port 8080 \