Skip to content

Commit

Permalink
fix: remove v in docker image version tag (#826)
Browse files Browse the repository at this point in the history
Signed-off-by: David Poltorak <[email protected]>
  • Loading branch information
davidpoltorak-io authored Aug 22, 2023
1 parent e25b8ca commit 30a8164
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion infrastructure/charts/node/templates/deployment.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ spec:
command: ['sh', '-c', "until nc -z {{ .Values.database.postgres.managingTeam }}-prism-node-postgres-cluster.{{.Release.Namespace}} 5432; do echo waiting for postgress-operator; sleep 2; done;"]
containers:
- name: prism-node
image: "{{ .Values.server.image.repository }}/{{ .Values.server.image.tag }}:v{{ .Values.server.image.version | default .Chart.AppVersion }}"
image: "{{ .Values.server.image.repository }}/{{ .Values.server.image.tag }}:{{ .Values.server.image.version | default .Chart.AppVersion }}"
imagePullPolicy: {{ .Values.server.image.pullPolicy }}
resources:
{{- toYaml .Values.server.resources | nindent 12 }}
Expand Down

0 comments on commit 30a8164

Please sign in to comment.