Skip to content

Commit 4f3542a

Browse files
Hechamonjuanpicado
andauthored
Feature/152 update to v6 (#154)
* Don't use default 1 for replicaCount Since `default` handles 0 (zero) as "not set", it's currently impossible to scale the helm chart to 0 replicas. The default value in the values file is 1 anyways, so this should not cause a breaking change. * Update Chart.yaml with new version * Update README.md * Update Chart.yaml Switch to v6 image * Update values.yaml update documentation comment in values.yaml --------- Co-authored-by: Juan Picado <[email protected]>
1 parent 417e902 commit 4f3542a

File tree

4 files changed

+5
-5
lines changed

4 files changed

+5
-5
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@ helm install npm verdaccio/verdaccio
4949

5050
```bash
5151
# Helm v3+
52-
helm install npm --set image.tag=5.29.0 verdaccio/verdaccio
52+
helm install npm --set image.tag=6.0.0 verdaccio/verdaccio
5353
```
5454

5555
### Upgrading Verdaccio

charts/verdaccio/Chart.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
apiVersion: v2
22
description: A lightweight private node.js proxy registry
33
name: verdaccio
4-
version: 4.18.0
5-
appVersion: 5.31.1
4+
version: 4.19.0
5+
appVersion: 6.0.0
66
home: https://verdaccio.org
77
icon: https://cdn.verdaccio.dev/logos/default.png
88
sources:

charts/verdaccio/templates/deployment.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ metadata:
1010
{{- end }}
1111
spec:
1212
{{- if .Values.replicaCountEnabled }}
13-
replicas: {{ default 1 .Values.replicaCount }}
13+
replicas: {{ .Values.replicaCount }}
1414
{{- end}}
1515
revisionHistoryLimit: {{ .Values.revisionHistoryLimit }}
1616
selector:

charts/verdaccio/values.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
image:
22
repository: verdaccio/verdaccio
3-
# tag: 5.21.1
3+
# tag: defaults to appVersion in Chart.yaml
44
pullPolicy: IfNotPresent
55
pullSecrets: []
66
# - dockerhub-secret

0 commit comments

Comments
 (0)