Spaces:
Running
Running
Jeremy Udit
commited on
perf: add prod deployment resources (#1333)
Browse files- adds more replicas as a temporary measure to mitigate against crashes
- reduces cpu and mem requests to what we've observed in practice over the last week
- chart/env/prod.yaml +3 -3
chart/env/prod.yaml
CHANGED
@@ -300,15 +300,15 @@ infisical:
|
|
300 |
|
301 |
autoscaling:
|
302 |
enabled: true
|
303 |
-
minReplicas:
|
304 |
maxReplicas: 30
|
305 |
targetMemoryUtilizationPercentage: "50"
|
306 |
targetCPUUtilizationPercentage: "50"
|
307 |
|
308 |
resources:
|
309 |
requests:
|
310 |
-
cpu:
|
311 |
-
memory:
|
312 |
limits:
|
313 |
cpu: 4
|
314 |
memory: 8Gi
|
|
|
300 |
|
301 |
autoscaling:
|
302 |
enabled: true
|
303 |
+
minReplicas: 12
|
304 |
maxReplicas: 30
|
305 |
targetMemoryUtilizationPercentage: "50"
|
306 |
targetCPUUtilizationPercentage: "50"
|
307 |
|
308 |
resources:
|
309 |
requests:
|
310 |
+
cpu: 2
|
311 |
+
memory: 4Gi
|
312 |
limits:
|
313 |
cpu: 4
|
314 |
memory: 8Gi
|