diff --git a/charts/kafka-ui/templates/_helpers.tpl b/charts/kafka-ui/templates/_helpers.tpl index 7155681..5b9a6ea 100644 --- a/charts/kafka-ui/templates/_helpers.tpl +++ b/charts/kafka-ui/templates/_helpers.tpl @@ -76,7 +76,11 @@ This allows us to check if the registry of the image is specified or not. {{- $repository := .Values.image.repository -}} {{- $tag := .Values.image.tag | default .Chart.AppVersion -}} {{- if $registryName }} +{{- if contains "@sha256" $tag }} +{{- printf "%s/%s%s" $registryName $repository $tag -}} +{{- else }} {{- printf "%s/%s:%s" $registryName $repository $tag -}} +{{- end }} {{- else }} {{- printf "%s:%s" $repository $tag -}} {{- end }}