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
@@ -108,8 +108,10 @@ st2:
108
108
livenessProbe: {}
109
109
readinessProbe: {}
110
110
annotations: {}
111
-
# TODO: Find out recommended/default resources for this specific service (#5)
112
-
resources: {}
111
+
resources:
112
+
requests:
113
+
memory: "100Mi"
114
+
cpu: "50m"
113
115
# Additional advanced settings to control pod/deployment placement
114
116
affinity: {}
115
117
nodeSelector: {}
@@ -250,8 +252,10 @@ st2web:
250
252
# Multiple st2auth processes can be behind a load balancer in an active-active configuration.
251
253
st2auth:
252
254
replicas: 2
253
-
# TODO: Find out recommended/default resources for this specific service (#5)
254
-
resources: {}
255
+
resources:
256
+
requests:
257
+
memory: "85Mi"
258
+
cpu: "50m"
255
259
# Additional advanced settings to control pod/deployment placement
256
260
nodeSelector: {}
257
261
tolerations: []
@@ -262,8 +266,10 @@ st2auth:
262
266
# Multiple st2api process can be behind a load balancer in an active-active configuration.
263
267
st2api:
264
268
replicas: 2
265
-
# TODO: Find out recommended/default resources for this specific service (#5)
266
-
resources: {}
269
+
resources:
270
+
requests:
271
+
memory: "150Mi"
272
+
cpu: "25m"
267
273
# Additional advanced settings to control pod/deployment placement
268
274
nodeSelector: {}
269
275
tolerations: []
@@ -274,8 +280,10 @@ st2api:
274
280
# Multiple st2stream process can be behind a load balancer in an active-active configuration.
275
281
st2stream:
276
282
replicas: 2
277
-
# TODO: Find out recommended/default resources for this specific service (#5)
278
-
resources: {}
283
+
resources:
284
+
requests:
285
+
memory: "100Mi"
286
+
cpu: "50m"
279
287
# Additional advanced settings to control pod/deployment placement
280
288
nodeSelector: {}
281
289
tolerations: []
@@ -286,8 +294,10 @@ st2stream:
286
294
# 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.
287
295
st2rulesengine:
288
296
replicas: 2
289
-
# TODO: Find out recommended/default resources for this specific service (#5)
290
-
resources: {}
297
+
resources:
298
+
requests:
299
+
memory: "75Mi"
300
+
cpu: "25m"
291
301
# 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.
299
309
st2timersengine:
300
-
# TODO: Find out recommended/default resources for this specific service (#5)
301
-
resources: {}
310
+
resources:
311
+
requests:
312
+
memory: "75Mi"
313
+
cpu: "10m"
302
314
# Additional advanced settings to control pod/deployment placement
303
315
nodeSelector: {}
304
316
tolerations: []
@@ -309,8 +321,10 @@ st2timersengine:
309
321
# 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.
310
322
st2workflowengine:
311
323
replicas: 2
312
-
# TODO: Find out recommended/default resources for this specific service (#5)
313
-
resources: {}
324
+
resources:
325
+
requests:
326
+
memory: "200Mi"
327
+
cpu: "100m"
314
328
# Additional advanced settings to control pod/deployment placement
315
329
nodeSelector: {}
316
330
tolerations: []
@@ -321,8 +335,10 @@ st2workflowengine:
321
335
# TODO: Description TBD
322
336
st2scheduler:
323
337
replicas: 2
324
-
# TODO: Find out recommended/default resources for this specific service (#5)
325
-
resources: {}
338
+
resources:
339
+
requests:
340
+
memory: "75Mi"
341
+
cpu: "50m"
326
342
# Additional advanced settings to control pod/deployment placement
327
343
nodeSelector: {}
328
344
tolerations: []
@@ -333,8 +349,10 @@ st2scheduler:
333
349
# st2notifier runs in active-active mode and requires for that coordination backend like Redis or Zookeeper
334
350
st2notifier:
335
351
replicas: 2
336
-
# TODO: Find out recommended/default resources for this specific service (#5)
337
-
resources: {}
352
+
resources:
353
+
requests:
354
+
memory: "75Mi"
355
+
cpu: "50m"
338
356
# Additional advanced settings to control pod/deployment placement
339
357
nodeSelector: {}
340
358
tolerations: []
@@ -346,8 +364,10 @@ st2notifier:
346
364
# distributed across runners via RabbitMQ. Adding more st2actionrunner processes increases the ability of StackStorm to execute actions.
347
365
st2actionrunner:
348
366
replicas: 5
349
-
# TODO: Find out recommended/default resources for this specific service (#5)
350
-
resources: {}
367
+
resources:
368
+
requests:
369
+
memory: "200Mi"
370
+
cpu: "75m"
351
371
annotations: {}
352
372
# Additional advanced settings to control pod/deployment placement
353
373
nodeSelector: {}
@@ -371,8 +391,10 @@ st2actionrunner:
371
391
st2garbagecollector:
372
392
# Having 1 st2garbagecollector unique replica is enough for periodic task like st2 history garbage collection
373
393
replicas: 1
374
-
# TODO: Find out recommended/default resources for this specific service (#5)
375
-
resources: {}
394
+
resources:
395
+
requests:
396
+
memory: "80Mi"
397
+
cpu: "10m"
376
398
# Additional advanced settings to control pod/deployment placement
0 commit comments