Skip to content

Commit

Permalink
Bugfix: Fix image tag (#96)
Browse files Browse the repository at this point in the history
  • Loading branch information
rblaine95 authored Apr 19, 2022
1 parent b6a8efb commit 0470c20
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion charts/verdaccio/Chart.yaml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
apiVersion: v2
description: A lightweight private node.js proxy registry
name: verdaccio
version: 4.7.0
version: 4.7.1
appVersion: 5.5.0
home: https://verdaccio.org
icon: https://cdn.verdaccio.dev/logos/default.png
Expand Down
2 changes: 1 addition & 1 deletion charts/verdaccio/templates/deployment.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ spec:
{{- end }}
containers:
- name: {{ template "verdaccio.name" . }}
image: "{{ .Values.image.repository }}:{{ .Values.image.tag }}"
image: "{{ .Values.image.repository }}:{{ .Values.image.tag | default .Chart.AppVersion }}"
imagePullPolicy: {{ .Values.image.pullPolicy }}
ports:
- containerPort: 4873
Expand Down
2 changes: 1 addition & 1 deletion charts/verdaccio/values.yaml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
image:
repository: verdaccio/verdaccio
tag: 5.2.0
# tag: 5.5.0
pullPolicy: IfNotPresent
pullSecrets: []
# - dockerhub-secret
Expand Down

0 comments on commit 0470c20

Please sign in to comment.