1
0
Fork 0
mirror of synced 2024-09-20 11:27:56 +12:00

allow a custom docker registry to be passed if required to helm chart

This commit is contained in:
Martin McKeaveney 2024-08-16 15:29:52 +01:00
parent 20baecc9fb
commit 43560aa04f
6 changed files with 6 additions and 6 deletions

View file

@ -221,7 +221,7 @@ spec:
name: {{ .secretName }}
key: {{ .secretKey | quote }}
{{- end}}
image: budibase/apps:{{ .Values.globals.appVersion | default .Chart.AppVersion }}
image: {{ .Values.globals.dockerRegistry }}budibase/apps:{{ .Values.globals.appVersion | default .Chart.AppVersion }}
imagePullPolicy: Always
{{- if .Values.services.apps.startupProbe }}
{{- with .Values.services.apps.startupProbe }}

View file

@ -209,7 +209,7 @@ spec:
key: {{ .secretKey | quote }}
{{- end}}
image: budibase/apps:{{ .Values.globals.appVersion | default .Chart.AppVersion }}
image: {{ .Values.globals.dockerRegistry }}budibase/apps:{{ .Values.globals.appVersion | default .Chart.AppVersion }}
imagePullPolicy: Always
{{- if .Values.services.automationWorkers.startupProbe }}
{{- with .Values.services.automationWorkers.startupProbe }}

View file

@ -35,7 +35,7 @@ spec:
name: {{ template "budibase.fullname" . }}
key: objectStoreSecret
image: minio/minio
image: {{ .Values.globals.dockerRegistry }}minio/minio
imagePullPolicy: ""
livenessProbe:
httpGet:

View file

@ -32,7 +32,7 @@ spec:
{{ end }}
spec:
containers:
- image: budibase/proxy:{{ .Values.globals.appVersion | default .Chart.AppVersion }}
- image: {{ .Values.globals.dockerRegistry }}budibase/proxy:{{ .Values.globals.appVersion | default .Chart.AppVersion }}
imagePullPolicy: Always
name: proxy-service
{{- if .Values.services.proxy.startupProbe }}

View file

@ -22,7 +22,7 @@ spec:
- redis-server
- --requirepass
- {{ .Values.services.redis.password }}
image: {{ .Values.services.redis.image }}
image: {{ .Values.globals.dockerRegistry }}{{ .Values.services.redis.image }}
imagePullPolicy: ""
name: redis-service
ports:

View file

@ -207,7 +207,7 @@ spec:
name: {{ .secretName }}
key: {{ .secretKey | quote }}
{{- end}}
image: budibase/worker:{{ .Values.globals.appVersion | default .Chart.AppVersion }}
image: {{ .Values.globals.dockerRegistry }}budibase/worker:{{ .Values.globals.appVersion | default .Chart.AppVersion }}
imagePullPolicy: Always
{{- if .Values.services.worker.startupProbe }}
{{- with .Values.services.worker.startupProbe }}