Skip to content

Commit 53d8fc5

Browse files
authored
chore: otel resources on staging should mirror prod (#7126)
1 parent 25cdf3a commit 53d8fc5

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

deployment/services/environment.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -80,8 +80,8 @@ export function prepareEnvironment(input: {
8080
memoryLimit: isProduction ? '1000Mi' : '300Mi',
8181
},
8282
tracingCollector: {
83-
cpuLimit: isProduction ? '1000m' : '100m',
84-
memoryLimit: isProduction ? '4000Mi' : '200Mi',
83+
cpuLimit: isProduction || isStaging ? '1000m' : '100m',
84+
memoryLimit: isProduction || isStaging ? '4000Mi' : '200Mi',
8585
maxReplicas: isProduction || isStaging ? 3 : 1,
8686
},
8787
},

0 commit comments

Comments
 (0)