mirror of
https://github.com/graphql-hive/console
synced 2026-04-21 14:37:17 +00:00
fix(deployment): update envoy limit for staging
This commit is contained in:
parent
fd0b8251c5
commit
34528114f3
1 changed files with 1 additions and 1 deletions
|
|
@ -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,
|
||||
|
|
|
|||
Loading…
Reference in a new issue