Skip to content

Commit

Permalink
Fix Image tag on Helm
Browse files Browse the repository at this point in the history
  • Loading branch information
carlosthe19916 committed May 29, 2022
1 parent 8b765c9 commit 4afa44c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/main/helm/templates/deployment.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ spec:
spec:
containers:
- name: {{ .Chart.Name }}
image: "v{{ .Values.image.repository }}:{{ .Values.image.tag | default .Chart.AppVersion }}"
image: "{{ .Values.image.repository }}:v{{ .Values.image.tag | default .Chart.AppVersion }}"
imagePullPolicy: {{ .Values.image.pullPolicy }}
ports:
- name: http
Expand Down

0 comments on commit 4afa44c

Please sign in to comment.