Skip to content

Commit 20f0b18

Browse files
committed
alternate docker repsository improvements
1 parent e4aaa44 commit 20f0b18

File tree

3 files changed

+3
-6
lines changed

3 files changed

+3
-6
lines changed

.circleci/config.yml

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -32,9 +32,6 @@ jobs:
3232
- run:
3333
name: Helm Lint Check (Enterprise)
3434
command: helm lint --set enterprise.enabled=true --set enterprise.license=123asd456fake
35-
- run:
36-
name: Helm Lint Check (st2Repository)
37-
command: helm lint --set image.st2Repository="docker.example.com/st2modified"
3835
- run:
3936
name: Helm template
4037
command: |

templates/_helpers.tpl

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -23,8 +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.st2Repository -}}
27-
{{ .Values.image.st2Repository }}
26+
{{- else if .Values.image.repository -}}
27+
{{ .Values.image.repository }}
2828
{{- else -}}
2929
stackstorm
3030
{{- end -}}

values.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ image:
1111
# docker image repository ("docker.stackstorm.com"). Applies to all st2 containers except
1212
# st2chatops and st2packs (which have their own override). This also does not impact
1313
# dependencies such as mongo or redis, which have their own helm chart settings.
14-
st2Repository: ""
14+
repository: ""
1515

1616

1717
##

0 commit comments

Comments
 (0)