From 55fafcd482a177f4f874310cbb13012492a65abc Mon Sep 17 00:00:00 2001 From: Laurin Quast Date: Fri, 27 Mar 2026 11:49:05 +0100 Subject: [PATCH] chore: always run the maximum amount of usage services --- deployment/services/environment.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/deployment/services/environment.ts b/deployment/services/environment.ts index e37c4aca14a..5b94a878b94 100644 --- a/deployment/services/environment.ts +++ b/deployment/services/environment.ts @@ -60,7 +60,7 @@ export function prepareEnvironment(input: { memoryLimit: isProduction || isStaging ? '3584Mi' : '1Gi', }, usageService: { - replicas: isProduction || isStaging ? 3 : 1, + replicas: isProduction || isStaging ? 6 : 1, cpuLimit: isProduction ? '1000m' : '100m', maxReplicas: isProduction || isStaging ? 6 : 1, cpuAverageToScale: 60,