File tree Expand file tree Collapse file tree 4 files changed +6
-1
lines changed
Expand file tree Collapse file tree 4 files changed +6
-1
lines changed Original file line number Diff line number Diff line change @@ -135,6 +135,7 @@ and their default values.
135135| ` secrets.htpasswd ` | user and password list to generate htpasswd. | ` [] ` |
136136| ` ingress.enabled ` | Enable/Disable Ingress | ` false ` |
137137| ` ingress.className ` | Ingress Class Name (k8s ` >=1.18 ` required) | ` "" ` |
138+ | ` ingress.labels ` | Ingress Labels | ` {} ` |
138139| ` ingress.annotations ` | Ingress Annotations | ` {} ` |
139140| ` ingress.hosts ` | List of Ingress Hosts | ` [] ` |
140141| ` ingress.paths ` | List of Ingress Paths | ` ["/"] ` |
Original file line number Diff line number Diff line change 11apiVersion : v2
22description : A lightweight private node.js proxy registry
33name : verdaccio
4- version : 4.23 .0
4+ version : 4.24 .0
55appVersion : 6.0.2
66home : https://verdaccio.org
77icon : https://cdn.verdaccio.dev/logos/default.png
Original file line number Diff line number Diff line change @@ -20,6 +20,9 @@ metadata:
2020 name : {{ $fullName }}
2121 labels :
2222 {{- include "verdaccio.labels" . | nindent 4 }}
23+ {{- with .Values.ingress.labels }}
24+ {{- toYaml . | nindent 4 }}
25+ {{- end }}
2326 {{- with .Values.ingress.annotations }}
2427 annotations :
2528 {{- include "tplvalues.render" (dict "value" . "context" $) | nindent 4 }}
Original file line number Diff line number Diff line change @@ -84,6 +84,7 @@ ingress:
8484 # Use this to define, ALB ingress's actions annotation based routing. Ex: for ssl-redirect
8585 # Ref: https://kubernetes-sigs.github.io/aws-load-balancer-controller/latest/guide/tasks/ssl_redirect/
8686 extraPaths : []
87+ labels : {}
8788# hosts:
8889# - npm.blah.com
8990# annotations:
You can’t perform that action at this time.
0 commit comments