Skip to content

Commit

Permalink
Allow image version overrides with tag (#40)
Browse files Browse the repository at this point in the history
  • Loading branch information
abeytom07 authored Jul 16, 2024
1 parent 3010096 commit ff639ff
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
2 changes: 1 addition & 1 deletion helm/templates/deployment.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ spec:
mountPath: /etc/jmx-schema-registry
{{- end }}
- name: {{ .Chart.Name }}
image: "{{ .Values.image.repository }}:{{ .Chart.AppVersion }}"
image: "{{ .Values.image.repository }}:{{ .Values.image.tag | default .Chart.AppVersion }}"
imagePullPolicy: {{ .Values.image.pullPolicy }}
ports:
- name: http
Expand Down
1 change: 1 addition & 0 deletions helm/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@ replicaCount: 1
image:
repository: "hypertrace/schema-registry"
pullPolicy: "IfNotPresent"
tag: ""

imagePullSecrets: []

Expand Down

0 comments on commit ff639ff

Please sign in to comment.