Skip to content

Commit cc94bd0

Browse files
authoredAug 16, 2022
Merge branch 'master' into optional_secret_config
2 parents 54b251b + 806ef07 commit cc94bd0

File tree

6 files changed

+40
-2
lines changed

6 files changed

+40
-2
lines changed
 

‎CHANGELOG.md

+2
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,8 @@
77
* Fix mounts for `jobs.preRegisterContentCommand` container to use the same mounts as the primary register-content container. (#322) (by @cognifloyd)
88
* Add support for providing custom st2actionrunner-specific docker repository, image name, pull policy, and pull secret via `values.yaml`. (#141) (by @Sheshagiri)
99
* Fix bug that hung an init container when `st2.packs.volumes.enabled` without `st2.packs.volumes.configs`. (#324) (by @rebrowning)
10+
* Add ability to create custom labels for service account.(#327)(by @SuganJoe)
11+
* Fix bug that would not set the appropriate redis connection string when using `redis.password` and `redis.usePassword` (#325) (by @rebrowning)
1012
* New Feature: Add `existingConfigSecret`. If this is defined, the `st2.secrets.conf` key within this secret will be written as /etc/st2/st2.secrets.conf and added to the end of the command line arguments of all pods. (#289) (by @eric-al/@ericreeves)
1113

1214
## v0.100.0

‎templates/_helpers.tpl

+7
Original file line numberDiff line numberDiff line change
@@ -114,6 +114,13 @@ Generate list of nodes for Redis with Sentinel connection string, based on numbe
114114
{{- end -}}
115115
{{- end -}}
116116

117+
{{- define "stackstorm-ha.redis-password" -}}
118+
{{- if not .Values.redis.sentinel.enabled }}
119+
{{- fail "value for redis.sentinel.enabled MUST be true" }}
120+
{{- end }}
121+
{{- if not (empty .Values.redis.password)}}:{{ .Values.redis.password }}@{{- end }}
122+
{{- end -}}
123+
117124
{{/*
118125
Reduce duplication of the st2.*.conf volume details
119126
*/}}

‎templates/configmaps_st2-conf.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ data:
1717
ssh_key_file = {{ tpl .Values.st2.system_user.ssh_key_file . }}
1818
{{- if index .Values "redis" "enabled" }}
1919
[coordination]
20-
url = redis://{{ template "stackstorm-ha.redis-nodes" $ }}
20+
url = redis://{{ template "stackstorm-ha.redis-password" $ }}{{ template "stackstorm-ha.redis-nodes" $ }}
2121
{{- end }}
2222
{{- if index .Values "rabbitmq" "enabled" }}
2323
[messaging]

‎templates/service-account.yaml

+3
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,9 @@ metadata:
99
{{- toYaml .Values.serviceAccount.serviceAccountAnnotations | nindent 4 }}
1010
{{- end }}
1111
labels: {{- include "stackstorm-ha.labels" (list $ (include "stackstorm-ha.name" $)) | nindent 4 }}
12+
{{- if .Values.serviceAccount.serviceAccountLabels }}
13+
{{- toYaml .Values.serviceAccount.serviceAccountLabels | nindent 4 }}
14+
{{- end }}
1215
{{- if .Values.serviceAccount.pullSecret }}
1316
imagePullSecrets:
1417
- name: "{{ .Values.serviceAccount.pullSecret }}"

‎tests/unit/labels_test.yaml

+18
Original file line numberDiff line numberDiff line change
@@ -214,6 +214,24 @@ tests:
214214
path: metadata.labels.heritage
215215
value: Helm
216216

217+
- it: ServiceAccount accepts custom labels
218+
template: service-account.yaml
219+
set:
220+
serviceAccount:
221+
create: true
222+
serviceAccountLabels:
223+
foo: bar
224+
answer: "42"
225+
asserts:
226+
- isNotNull:
227+
path: metadata.labels
228+
- equal:
229+
path: metadata.labels.foo
230+
value: bar
231+
- equal:
232+
path: metadata.labels.answer
233+
value: "42"
234+
217235
- it: st2web Ingress has required labels
218236
template: ingress.yaml
219237
set:

‎values.yaml

+9-1
Original file line numberDiff line numberDiff line change
@@ -32,6 +32,9 @@ serviceAccount:
3232
serviceAccountAnnotations: {}
3333
# Used to override service account name
3434
serviceAccountName:
35+
# Used to define any custom labels required
36+
#serviceAccountLabels: {}
37+
3538
# Fallback image pull secret.
3639
# If a pod does not have pull secrets, k8s will use the service account's pull secrets.
3740
# See: https://kubernetes.io/docs/reference/access-authn-authz/service-accounts-admin/#serviceaccount-admission-controller
@@ -67,7 +70,7 @@ st2:
6770
config: |
6871
[api]
6972
allow_origin = '*'
70-
73+
7174
#Override Definitions can be added here.
7275
#https://docs.stackstorm.com/latest/packs.html#overriding-pack-defaults
7376
overrides: {}
@@ -1058,10 +1061,15 @@ redis:
10581061
# https://github.com/bitnami/charts/tree/master/bitnami/redis#master-slave-with-sentinel
10591062
sentinel:
10601063
enabled: true
1064+
# DO NOT SET sentinel.usePassword, the tooz driver cannot connect to a password protected sentinel
1065+
# however it can connect to a password protected redis that is being managed by sentinel
1066+
# usePassword: false
10611067
# Enable or disable static sentinel IDs for each replicas
10621068
# If disabled each sentinel will generate a random id at startup
10631069
# If enabled, each replicas will have a constant ID on each start-up
10641070
staticID: true
1071+
# if redis.usePassword is true, you can set the password here
1072+
# password: mysupersecretpassword
10651073
networkPolicy:
10661074
enabled: false
10671075
usePassword: false

0 commit comments

Comments
 (0)
Please sign in to comment.