Skip to content

Commit

Permalink
fix: allow user to override image repository
Browse files Browse the repository at this point in the history
Allow the image repo to be set in values so that customers can use private registries.
Signed-off-by: Ryan Faircloth <[email protected]>
  • Loading branch information
ryanfaircloth committed Feb 13, 2025
1 parent 7ec1a98 commit 3928f54
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ spec:
sizeLimit: 1Mi
containers:
- name: access-operator
image: quay.io/strimzi/access-operator:{{ .Values.image.tag }}
image: {{ .Values.image.repository }}:{{ .Values.image.tag }}
{{- if .Values.image.pullPolicy }}
imagePullPolicy: {{ .Values.image.pullPolicy | quote }}
{{- end }}
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
image:
repository: quay.io/strimzi/access-operator
tag: latest

resources:
Expand Down

0 comments on commit 3928f54

Please sign in to comment.