소스 검색

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 }}