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
@@ -79,8 +79,10 @@ st2:
79
79
livenessProbe: {}
80
80
readinessProbe: {}
81
81
annotations: {}
82
-
# TODO: Find out recommended/default resources for this specific service (#5)
83
-
resources: {}
82
+
resources:
83
+
requests:
84
+
memory: "100Mi"
85
+
cpu: "50m"
84
86
# Additional advanced settings to control pod/deployment placement
85
87
affinity: {}
86
88
nodeSelector: {}
@@ -256,8 +258,10 @@ st2web:
256
258
# Multiple st2auth processes can be behind a load balancer in an active-active configuration.
257
259
st2auth:
258
260
replicas: 2
259
-
# TODO: Find out recommended/default resources for this specific service (#5)
260
-
resources: {}
261
+
resources:
262
+
requests:
263
+
memory: "85Mi"
264
+
cpu: "50m"
261
265
# Additional advanced settings to control pod/deployment placement
262
266
nodeSelector: {}
263
267
tolerations: []
@@ -268,8 +272,10 @@ st2auth:
268
272
# Multiple st2api process can be behind a load balancer in an active-active configuration.
269
273
st2api:
270
274
replicas: 2
271
-
# TODO: Find out recommended/default resources for this specific service (#5)
272
-
resources: {}
275
+
resources:
276
+
requests:
277
+
memory: "150Mi"
278
+
cpu: "25m"
273
279
# Additional advanced settings to control pod/deployment placement
274
280
nodeSelector: {}
275
281
tolerations: []
@@ -280,8 +286,10 @@ st2api:
280
286
# Multiple st2stream process can be behind a load balancer in an active-active configuration.
281
287
st2stream:
282
288
replicas: 2
283
-
# TODO: Find out recommended/default resources for this specific service (#5)
284
-
resources: {}
289
+
resources:
290
+
requests:
291
+
memory: "100Mi"
292
+
cpu: "50m"
285
293
# Additional advanced settings to control pod/deployment placement
286
294
nodeSelector: {}
287
295
tolerations: []
@@ -292,8 +300,10 @@ st2stream:
292
300
# 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.
293
301
st2rulesengine:
294
302
replicas: 2
295
-
# TODO: Find out recommended/default resources for this specific service (#5)
296
-
resources: {}
303
+
resources:
304
+
requests:
305
+
memory: "75Mi"
306
+
cpu: "25m"
297
307
# 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.
305
315
st2timersengine:
306
-
# TODO: Find out recommended/default resources for this specific service (#5)
307
-
resources: {}
316
+
resources:
317
+
requests:
318
+
memory: "75Mi"
319
+
cpu: "10m"
308
320
# Additional advanced settings to control pod/deployment placement
309
321
nodeSelector: {}
310
322
tolerations: []
@@ -315,8 +327,10 @@ st2timersengine:
315
327
# 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.
316
328
st2workflowengine:
317
329
replicas: 2
318
-
# TODO: Find out recommended/default resources for this specific service (#5)
319
-
resources: {}
330
+
resources:
331
+
requests:
332
+
memory: "200Mi"
333
+
cpu: "100m"
320
334
# Additional advanced settings to control pod/deployment placement
321
335
nodeSelector: {}
322
336
tolerations: []
@@ -327,8 +341,10 @@ st2workflowengine:
327
341
# TODO: Description TBD
328
342
st2scheduler:
329
343
replicas: 2
330
-
# TODO: Find out recommended/default resources for this specific service (#5)
331
-
resources: {}
344
+
resources:
345
+
requests:
346
+
memory: "75Mi"
347
+
cpu: "50m"
332
348
# Additional advanced settings to control pod/deployment placement
333
349
nodeSelector: {}
334
350
tolerations: []
@@ -339,8 +355,10 @@ st2scheduler:
339
355
# st2notifier runs in active-active mode and requires for that coordination backend like Redis or Zookeeper
340
356
st2notifier:
341
357
replicas: 2
342
-
# TODO: Find out recommended/default resources for this specific service (#5)
343
-
resources: {}
358
+
resources:
359
+
requests:
360
+
memory: "75Mi"
361
+
cpu: "50m"
344
362
# Additional advanced settings to control pod/deployment placement
345
363
nodeSelector: {}
346
364
tolerations: []
@@ -352,8 +370,10 @@ st2notifier:
352
370
# distributed across runners via RabbitMQ. Adding more st2actionrunner processes increases the ability of StackStorm to execute actions.
353
371
st2actionrunner:
354
372
replicas: 5
355
-
# TODO: Find out recommended/default resources for this specific service (#5)
356
-
resources: {}
373
+
resources:
374
+
requests:
375
+
memory: "200Mi"
376
+
cpu: "75m"
357
377
annotations: {}
358
378
# Additional advanced settings to control pod/deployment placement
359
379
nodeSelector: {}
@@ -377,8 +397,10 @@ st2actionrunner:
377
397
st2garbagecollector:
378
398
# Having 1 st2garbagecollector unique replica is enough for periodic task like st2 history garbage collection
379
399
replicas: 1
380
-
# TODO: Find out recommended/default resources for this specific service (#5)
381
-
resources: {}
400
+
resources:
401
+
requests:
402
+
memory: "80Mi"
403
+
cpu: "10m"
382
404
# Additional advanced settings to control pod/deployment placement
0 commit comments