Skip to content

Commit faeac1a

Browse files
authored
Merge branch 'master' into bionic-upgrade
2 parents 1d9bcb8 + 088fe56 commit faeac1a

File tree

3 files changed

+11
-0
lines changed

3 files changed

+11
-0
lines changed

CHANGELOG.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,9 @@
1111
* Update `mongodb-replicaset` 3rd party chart from `3.9.6` to `3.14.0` (#129)
1212
* Update CI infrastructure env, run tests on updated Helm `v2.16.7`, latest minikube `v1.10.1` and K8s `1.18` (#129)
1313

14+
## v0.28.0
15+
* Added support for custom image repository (#131) (by @ytjohn)
16+
1417
## v0.27.0
1518
* Added support to toggle etcd-operator as a coordination backend (#127) (by @rrahman-nv)
1619

templates/_helpers.tpl

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -23,6 +23,8 @@ community
2323
{{- define "imageRepository" -}}
2424
{{- if required "Missing context '.Values.enterprise.enabled'!" .Values.enterprise.enabled -}}
2525
docker.stackstorm.com
26+
{{- else if .Values.image.repository -}}
27+
{{ .Values.image.repository }}
2628
{{- else -}}
2729
stackstorm
2830
{{- end -}}

values.yaml

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,12 @@
77
image:
88
# Image pull policy. Change to "IfNotPresent" when switching to stable images
99
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+
1016

1117
##
1218
## StackStorm Enterprise settings (Optional)

0 commit comments

Comments
 (0)