From 0470c20d88451a8b283879a0d808a6f8e01b941f Mon Sep 17 00:00:00 2001 From: Robert Blaine <4052340+rblaine95@users.noreply.github.com> Date: Tue, 19 Apr 2022 11:15:49 +0200 Subject: [PATCH] Bugfix: Fix image tag (#96) --- charts/verdaccio/Chart.yaml | 2 +- charts/verdaccio/templates/deployment.yaml | 2 +- charts/verdaccio/values.yaml | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/charts/verdaccio/Chart.yaml b/charts/verdaccio/Chart.yaml index f5747b5..f56e24e 100644 --- a/charts/verdaccio/Chart.yaml +++ b/charts/verdaccio/Chart.yaml @@ -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 diff --git a/charts/verdaccio/templates/deployment.yaml b/charts/verdaccio/templates/deployment.yaml index 76b582a..2cc7a31 100644 --- a/charts/verdaccio/templates/deployment.yaml +++ b/charts/verdaccio/templates/deployment.yaml @@ -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 diff --git a/charts/verdaccio/values.yaml b/charts/verdaccio/values.yaml index 294047b..b2b3fd7 100644 --- a/charts/verdaccio/values.yaml +++ b/charts/verdaccio/values.yaml @@ -1,6 +1,6 @@ image: repository: verdaccio/verdaccio - tag: 5.2.0 + # tag: 5.5.0 pullPolicy: IfNotPresent pullSecrets: [] # - dockerhub-secret