You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: values.yaml
+44-22Lines changed: 44 additions & 22 deletions
Original file line number
Diff line number
Diff line change
@@ -119,8 +119,10 @@ st2:
119
119
livenessProbe: {}
120
120
readinessProbe: {}
121
121
annotations: {}
122
-
# TODO: Find out recommended/default resources for this specific service (#5)
123
-
resources: {}
122
+
resources:
123
+
requests:
124
+
memory: "100Mi"
125
+
cpu: "50m"
124
126
# Additional advanced settings to control pod/deployment placement
125
127
affinity: {}
126
128
nodeSelector: {}
@@ -261,8 +263,10 @@ st2web:
261
263
# Multiple st2auth processes can be behind a load balancer in an active-active configuration.
262
264
st2auth:
263
265
replicas: 2
264
-
# TODO: Find out recommended/default resources for this specific service (#5)
265
-
resources: {}
266
+
resources:
267
+
requests:
268
+
memory: "85Mi"
269
+
cpu: "50m"
266
270
# Additional advanced settings to control pod/deployment placement
267
271
nodeSelector: {}
268
272
tolerations: []
@@ -273,8 +277,10 @@ st2auth:
273
277
# Multiple st2api process can be behind a load balancer in an active-active configuration.
274
278
st2api:
275
279
replicas: 2
276
-
# TODO: Find out recommended/default resources for this specific service (#5)
277
-
resources: {}
280
+
resources:
281
+
requests:
282
+
memory: "150Mi"
283
+
cpu: "25m"
278
284
# Additional advanced settings to control pod/deployment placement
279
285
nodeSelector: {}
280
286
tolerations: []
@@ -285,8 +291,10 @@ st2api:
285
291
# Multiple st2stream process can be behind a load balancer in an active-active configuration.
286
292
st2stream:
287
293
replicas: 2
288
-
# TODO: Find out recommended/default resources for this specific service (#5)
289
-
resources: {}
294
+
resources:
295
+
requests:
296
+
memory: "100Mi"
297
+
cpu: "50m"
290
298
# Additional advanced settings to control pod/deployment placement
291
299
nodeSelector: {}
292
300
tolerations: []
@@ -297,8 +305,10 @@ st2stream:
297
305
# Multiple st2rulesengine processes can run in active-active with only connections to MongoDB and RabbitMQ. All these will share the TriggerInstance load and naturally pick up more work if one or more of the processes becomes unavailable.
298
306
st2rulesengine:
299
307
replicas: 2
300
-
# TODO: Find out recommended/default resources for this specific service (#5)
301
-
resources: {}
308
+
resources:
309
+
requests:
310
+
memory: "75Mi"
311
+
cpu: "25m"
302
312
# Additional advanced settings to control pod/deployment placement
# Only single replica is created via K8s Deployment as timersengine can't work in active-active mode at the moment and it relies on K8s failover/reschedule capabilities to address cases of process failure.
310
320
st2timersengine:
311
-
# TODO: Find out recommended/default resources for this specific service (#5)
312
-
resources: {}
321
+
resources:
322
+
requests:
323
+
memory: "75Mi"
324
+
cpu: "10m"
313
325
# Additional advanced settings to control pod/deployment placement
314
326
nodeSelector: {}
315
327
tolerations: []
@@ -320,8 +332,10 @@ st2timersengine:
320
332
# Multiple st2workflowengine processes can run in active-active mode and will share the load and pick up more work if one or more of the processes become available.
321
333
st2workflowengine:
322
334
replicas: 2
323
-
# TODO: Find out recommended/default resources for this specific service (#5)
324
-
resources: {}
335
+
resources:
336
+
requests:
337
+
memory: "200Mi"
338
+
cpu: "100m"
325
339
# Additional advanced settings to control pod/deployment placement
326
340
nodeSelector: {}
327
341
tolerations: []
@@ -332,8 +346,10 @@ st2workflowengine:
332
346
# TODO: Description TBD
333
347
st2scheduler:
334
348
replicas: 2
335
-
# TODO: Find out recommended/default resources for this specific service (#5)
336
-
resources: {}
349
+
resources:
350
+
requests:
351
+
memory: "75Mi"
352
+
cpu: "50m"
337
353
# Additional advanced settings to control pod/deployment placement
338
354
nodeSelector: {}
339
355
tolerations: []
@@ -344,8 +360,10 @@ st2scheduler:
344
360
# st2notifier runs in active-active mode and requires for that coordination backend like Redis or Zookeeper
345
361
st2notifier:
346
362
replicas: 2
347
-
# TODO: Find out recommended/default resources for this specific service (#5)
348
-
resources: {}
363
+
resources:
364
+
requests:
365
+
memory: "75Mi"
366
+
cpu: "50m"
349
367
# Additional advanced settings to control pod/deployment placement
350
368
nodeSelector: {}
351
369
tolerations: []
@@ -357,8 +375,10 @@ st2notifier:
357
375
# distributed across runners via RabbitMQ. Adding more st2actionrunner processes increases the ability of StackStorm to execute actions.
358
376
st2actionrunner:
359
377
replicas: 5
360
-
# TODO: Find out recommended/default resources for this specific service (#5)
361
-
resources: {}
378
+
resources:
379
+
requests:
380
+
memory: "200Mi"
381
+
cpu: "75m"
362
382
annotations: {}
363
383
# Additional advanced settings to control pod/deployment placement
364
384
nodeSelector: {}
@@ -382,8 +402,10 @@ st2actionrunner:
382
402
st2garbagecollector:
383
403
# Having 1 st2garbagecollector unique replica is enough for periodic task like st2 history garbage collection
384
404
replicas: 1
385
-
# TODO: Find out recommended/default resources for this specific service (#5)
386
-
resources: {}
405
+
resources:
406
+
requests:
407
+
memory: "80Mi"
408
+
cpu: "10m"
387
409
# Additional advanced settings to control pod/deployment placement
0 commit comments