File tree Expand file tree Collapse file tree 4 files changed +8
-1
lines changed
Expand file tree Collapse file tree 4 files changed +8
-1
lines changed Original file line number Diff line number Diff line change @@ -76,6 +76,7 @@ and their default values.
7676| ---------------------------------- | --------------------------------------------------------------- | --------------------- |
7777| ` existingConfigMap ` | Name of custom ConfigMap to use | ` false ` |
7878| ` image.pullPolicy ` | Image pull policy | ` IfNotPresent ` |
79+ | ` image.pullSecrets ` | Image pull secrets | ` [] ` |
7980| ` image.repository ` | Verdaccio container image repository | ` verdaccio/verdaccio ` |
8081| ` image.tag ` | Verdaccio container image tag | ` 4.6.2 ` |
8182| ` nodeSelector ` | Node labels for pod assignment | ` {} ` |
Original file line number Diff line number Diff line change 11apiVersion : v1
22description : A lightweight private npm proxy registry (sinopia fork)
33name : verdaccio
4- version : 0.16.1
4+ version : 0.16.2
55appVersion : 4.7.2
66home : https://verdaccio.org
77icon : https://cdn.verdaccio.dev/logos/default.png
Original file line number Diff line number Diff line change 6767{{- if .Values.extraEnvVars }}
6868{{ toYaml .Values.extraEnvVars | indent 12 }}
6969{{- end }}
70+ {{- if .Values.image.pullSecrets }}
71+ imagePullSecrets :
72+ {{ toYaml .Values.image.pullSecrets | indent 8 }}
73+ {{- end }}
7074 {{- if .Values.securityContext.enabled }}
7175 # Allow non-root user to access PersistentVolume
7276 securityContext :
Original file line number Diff line number Diff line change 22 repository : verdaccio/verdaccio
33 tag : 4.6.2
44 pullPolicy : IfNotPresent
5+ pullSecrets :
6+ # name: dockerhub-secret
57
68service :
79 annotations : {}
You can’t perform that action at this time.
0 commit comments