We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 7ec1a98 commit a6b3402Copy full SHA for a6b3402
packaging/helm-charts/helm3/strimzi-access-operator/templates/050-Deployment.yaml
@@ -28,9 +28,9 @@ spec:
28
sizeLimit: 1Mi
29
containers:
30
- name: access-operator
31
- image: quay.io/strimzi/access-operator:{{ .Values.image.tag }}
32
- {{- if .Values.image.pullPolicy }}
33
- imagePullPolicy: {{ .Values.image.pullPolicy | quote }}
+ image: {{ .Values.image.registry }}/{{ .Values.image.repository}}/{{ .Values.image.name }}:{{ .Values.image.tag }}
+ {{- with .Values.image.pullPolicy }}
+ imagePullPolicy: {{ . }}
34
{{- end }}
35
ports:
36
- containerPort: 8080
packaging/helm-charts/helm3/strimzi-access-operator/values.yaml
@@ -1,4 +1,7 @@
1
image:
2
+ registry: quay.io
3
+ repository: strimzi
4
+ name: access-operator
5
tag: latest
6
7
resources:
0 commit comments