Skip to content

Commit 61ec7de

Browse files
committed
fix(deployment): further adjustments to staging resources limits
1 parent c8e8050 commit 61ec7de

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

deployment/services/environment.ts

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -53,21 +53,21 @@ export function prepareEnvironment(input: {
5353
},
5454
envoy: {
5555
replicas: isProduction || isStaging ? 3 : 1,
56-
cpuLimit: isProduction ? '1500m' : '150m',
56+
cpuLimit: isProduction ? '1500m' : '120m',
5757
memoryLimit: isProduction ? '2Gi' : '200Mi',
5858
},
5959
schemaService: {
6060
memoryLimit: isProduction || isStaging ? '2Gi' : '1Gi',
6161
},
6262
usageService: {
6363
replicas: isProduction || isStaging ? 3 : 1,
64-
cpuLimit: isProduction ? '1000m' : '300m',
64+
cpuLimit: isProduction ? '1000m' : '100m',
6565
maxReplicas: isProduction || isStaging ? 6 : 1,
6666
cpuAverageToScale: 60,
6767
},
6868
usageIngestorService: {
6969
replicas: isProduction || isStaging ? 6 : 1,
70-
cpuLimit: isProduction ? '1000m' : '300m',
70+
cpuLimit: isProduction ? '1000m' : '100m',
7171
maxReplicas: isProduction || isStaging ? /* numberOfPartitions */ 16 : 2,
7272
cpuAverageToScale: 60,
7373
},

0 commit comments

Comments
 (0)