We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 1aee829 + 0edaa9f commit e385750Copy full SHA for e385750
charts/mageai/templates/deployment.yaml
@@ -44,7 +44,11 @@ spec:
44
- name: {{ .Chart.Name }}
45
securityContext:
46
{{- toYaml .Values.securityContext | nindent 12 }}
47
+ {{- if .Values.image.digest }}
48
+ image: "{{ .Values.image.repository }}@{{ .Values.image.digest }}"
49
+ {{- else }}
50
image: "{{ .Values.image.repository }}:{{ .Values.image.tag | default .Chart.AppVersion }}"
51
+ {{- end }}
52
imagePullPolicy: {{ .Values.image.pullPolicy }}
53
ports:
54
- name: http
0 commit comments