Browse Source

Fix image registry in helm chart

Closes #1215
Roman Zabaluev 3 years ago
parent
commit
242f85aa2e
1 changed files with 1 additions and 1 deletions
  1. 1 1
      charts/kafka-ui/templates/deployment.yaml

+ 1 - 1
charts/kafka-ui/templates/deployment.yaml

@@ -36,7 +36,7 @@ spec:
         - name: {{ .Chart.Name }}
           securityContext:
             {{- toYaml .Values.securityContext | nindent 12 }}
-          image: "{{ .Values.image.repository }}:{{ .Values.image.tag | default .Chart.AppVersion }}"
+          image: "{{ .Values.image.registry }}/{{ .Values.image.repository }}:{{ .Values.image.tag | default .Chart.AppVersion }}"
           imagePullPolicy: {{ .Values.image.pullPolicy }}
           envFrom:
             {{- if .Values.existingConfigMap }}