浏览代码

Fix image registry in helm chart

Closes #1215
Roman Zabaluev 3 年之前
父节点
当前提交
242f85aa2e
共有 1 个文件被更改,包括 1 次插入1 次删除
  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 }}