File tree Expand file tree Collapse file tree 3 files changed +6
-3
lines changed Expand file tree Collapse file tree 3 files changed +6
-3
lines changed Original file line number Diff line number Diff line change 1
1
# Changelog
2
2
3
3
## In Development
4
+ * Set ` st2client ` resources by ` values.yaml ` . (#337 ) (by @mamercad )
4
5
* Switch to the official ` bats ` Docker image for e2e tests. (#338 )
5
6
* Temporary workaround for #311 to use previous bitnami index from: https://github.com/bitnami/charts/issues/10539 (#312 #318 ) (by @0xhaven )
6
7
* Refactor label definitions to be more consistent by building labels and label selectors in partial helper templates. (#299 ) (by @cognifloyd )
Original file line number Diff line number Diff line change @@ -1653,9 +1653,7 @@ spec:
1653
1653
exec :
1654
1654
command : ["/bin/bash", "/post-start.sh"]
1655
1655
resources :
1656
- requests :
1657
- memory : " 5Mi"
1658
- cpu : " 5m"
1656
+ {{- toYaml .Values.st2client.resources | nindent 10 }}
1659
1657
volumes :
1660
1658
{{- if ne "disable" (default "" .Values.st2.datastore_crypto_key) }}
1661
1659
- name : st2-encryption-key-vol
Original file line number Diff line number Diff line change @@ -797,6 +797,10 @@ st2client:
797
797
nodeSelector : {}
798
798
tolerations : []
799
799
affinity : {}
800
+ resources :
801
+ requests :
802
+ memory : " 5Mi"
803
+ cpu : " 5m"
800
804
801
805
# https://docs.stackstorm.com/reference/ha.html#st2garbagecollector
802
806
# Optional service that cleans up old executions and other operations data based on setup configurations.
You can’t perform that action at this time.
0 commit comments