fix(deployment): update envoy limit for staging

This commit is contained in:
Dotan Simha 2026-03-30 17:46:03 +03:00
parent fd0b8251c5
commit 34528114f3
No known key found for this signature in database
GPG key ID: 1283E9C43706BAD0

View file

@ -50,7 +50,7 @@ export function prepareEnvironment(input: {
},
envoy: {
replicas: isProduction || isStaging ? 3 : 1,
cpuLimit: isProduction || isStaging ? '1500m' : '120m',
cpuLimit: isProduction ? '1500m' : isStaging ? '300m' : '120m',
memoryLimit: isProduction || isStaging ? '2Gi' : '200Mi',
timeouts: {
idleTimeout: 905,