File tree Expand file tree Collapse file tree 2 files changed +10
-2
lines changed Expand file tree Collapse file tree 2 files changed +10
-2
lines changed Original file line number Diff line number Diff line change @@ -1079,8 +1079,8 @@ spec:
1079
1079
{{- end }}
1080
1080
containers :
1081
1081
- name : st2actionrunner{{ template "enterpriseSuffix" . }}
1082
- image : " {{ template " imageRepository" . }}/st2actionrunner{{ template "enterpriseSuffix" . }}:{{ .Chart.AppVersion }}"
1083
- imagePullPolicy : {{ .Values.image.pullPolicy }}
1082
+ image : " {{ .Values.st2actionrunner.image.repository | default template " imageRepository" . }}/{{ .Values. st2actionrunner.image.name | default st2actionrunner }} {{ template "enterpriseSuffix" . }}:{{ .Values.st2actionrunner.image.tag | default .Chart.AppVersion }}"
1083
+ imagePullPolicy : {{ .Values.st2actionrunner.image.imagePullPolicy | default .Values. image.pullPolicy }}
1084
1084
# TODO: Add liveness/readiness probes (#3)
1085
1085
# livenessProbe:
1086
1086
# readinessProbe:
Original file line number Diff line number Diff line change @@ -350,6 +350,14 @@ st2notifier:
350
350
st2actionrunner :
351
351
replicas : 5
352
352
# TODO: Find out recommended/default resources for this specific service (#5)
353
+ image :
354
+ # Uncomment the following block to use your own at2actionrunner docker image
355
+ # repository: your-remote-docker-registry.io
356
+ # name: st2actionrunner
357
+ # tag: latest
358
+ # pullPolicy: Always
359
+ # Optional name of the imagePullSecret if your custom action runner image is hosted by a private Docker registry behind the auth
360
+ # pullSecret: st2actionrunner-auth
353
361
resources : {}
354
362
annotations : {}
355
363
# Additional advanced settings to control pod/deployment placement
You can’t perform that action at this time.
0 commit comments