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: CHANGELOG.md
+19Lines changed: 19 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -3,6 +3,25 @@
3
3
## In Development
4
4
* Allow injection of datastore key in cluster (#115) (by @AngryDeveloper)
5
5
6
+
## v0.30.0
7
+
* Pin st2 version to `v3.3dev` as a new latest development version (#129)
8
+
* Migrate from `py2``Ubuntu Xenial` to `py3``Ubuntu Bionic` as a base StackStorm OS (StackStorm/st2-dockerfiles#16, #129)
9
+
* Switch from MongoDB `3.4` to `4.0` for the mongodb-ha Helm chart (#129)
10
+
* Update `etcd-operator` 3rd party chart from `0.10.0` to latest `0.10.3` (#129)
11
+
* Update `rabbitmq-ha` 3rd party chart from `1.36.4` to `1.44.1` (#129)
12
+
* Update `mongodb-replicaset` 3rd party chart from `3.9.6` to `3.14.0` (#129)
13
+
* Update CI infrastructure env, run tests on updated Helm `v2.16.7`, latest minikube `v1.10.1` and K8s `1.18` (#129)
14
+
15
+
## v0.28.0
16
+
* Added support for custom image repository (#131) (by @ytjohn)
17
+
18
+
## v0.27.0
19
+
* Added support to toggle etcd-operator as a coordination backend (#127) (by @rrahman-nv)
20
+
21
+
## v0.26.0
22
+
* Added custom annotations to sensorcontainer and actionrunner Pods (#123) (by @stefangusa)
23
+
* Improve Helm values recommendations to configure 3rd party chart dependencies `rabbitmq-ha` and `mongodb-ha` in prod (#125) (by @stefangusa)
24
+
6
25
## v0.25.0
7
26
* Change ingress name from `<release name>-ingress` to `<release name>-st2web-ingress`, useful when using `stackstorm-ha` as a requirement for another chart. (#112) (by @erenatas)
8
27
* Fix st2web ingress which should have been defined as an Integer instead of a String (#111) (by @erenatas)
Copy file name to clipboardExpand all lines: values.yaml
+24-2Lines changed: 24 additions & 2 deletions
Original file line number
Diff line number
Diff line change
@@ -7,6 +7,12 @@
7
7
image:
8
8
# Image pull policy. Change to "IfNotPresent" when switching to stable images
9
9
pullPolicy: Always
10
+
# st2 image repository. Set this to override the default ("stackstorm") or enterprise
11
+
# docker image repository ("docker.stackstorm.com"). Applies to all st2 containers except
12
+
# st2chatops and st2packs (which have their own override). This also does not impact
13
+
# dependencies such as mongo or redis, which have their own helm chart settings.
14
+
repository: ""
15
+
10
16
11
17
##
12
18
## StackStorm Enterprise settings (Optional)
@@ -108,6 +114,7 @@ st2:
108
114
- name:
109
115
livenessProbe: {}
110
116
readinessProbe: {}
117
+
annotations: {}
111
118
# TODO: Find out recommended/default resources for this specific service (#5)
112
119
resources: {}
113
120
# Additional advanced settings to control pod/deployment placement
@@ -344,6 +351,7 @@ st2actionrunner:
344
351
replicas: 5
345
352
# TODO: Find out recommended/default resources for this specific service (#5)
346
353
resources: {}
354
+
annotations: {}
347
355
# Additional advanced settings to control pod/deployment placement
348
356
nodeSelector: {}
349
357
tolerations: []
@@ -421,15 +429,16 @@ mongodb-ha:
421
429
# Specify your external [database] connection parameters under st2.config
422
430
enabled: true
423
431
image:
424
-
# StackStorm currently supports maximum MongoDB v3.4
425
-
tag: 3.4
432
+
# StackStorm currently supports maximum MongoDB v4.0
433
+
tag: "4.0"
426
434
auth:
427
435
enabled: true
428
436
# NB! It's highly recommended to change ALL defaults!
429
437
adminUser: "admin"
430
438
adminPassword: "XeL5Rxwj7F0Wt43tFZVTN7H8Sg5XDHmK"
431
439
# Minimal key length is 6 symbols
432
440
key: "82PItDpqroti5RngOA7UqbHH7c6bFUwy"
441
+
resources: {}
433
442
434
443
##
435
444
## RabbitMQ HA configuration (3rd party chart dependency)
@@ -444,6 +453,12 @@ rabbitmq-ha:
444
453
rabbitmqUsername: admin
445
454
# TODO: Use default random 24 character password, but need to fetch this string for use by downstream services
446
455
rabbitmqPassword: 9jS+w1u07NbHtZke1m+jW4Cj
456
+
# RabbitMQ Memory high watermark. See: http://www.rabbitmq.com/memory.html
457
+
# Default values might not be enough for StackStorm deployment to work properly. We recommend to adjust these settings for you needs as well as enable Pod memory limits via "resources".
458
+
#rabbitmqMemoryHighWatermark: 512MB
459
+
#rabbitmqMemoryHighWatermarkType: absolute
460
+
# Up to 255 character string, should be fixed so that re-deploying the chart does not fail (see: https://github.com/helm/charts/issues/12371)
0 commit comments