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.
135
135
| ` secrets.htpasswd ` | user and password list to generate htpasswd. | ` [] ` |
136
136
| ` ingress.enabled ` | Enable/Disable Ingress | ` false ` |
137
137
| ` ingress.className ` | Ingress Class Name (k8s ` >=1.18 ` required) | ` "" ` |
138
+ | ` ingress.labels ` | Ingress Labels | ` {} ` |
138
139
| ` ingress.annotations ` | Ingress Annotations | ` {} ` |
139
140
| ` ingress.hosts ` | List of Ingress Hosts | ` [] ` |
140
141
| ` ingress.paths ` | List of Ingress Paths | ` ["/"] ` |
Original file line number Diff line number Diff line change 1
1
apiVersion : v2
2
2
description : A lightweight private node.js proxy registry
3
3
name : verdaccio
4
- version : 4.23 .0
4
+ version : 4.24 .0
5
5
appVersion : 6.0.2
6
6
home : https://verdaccio.org
7
7
icon : https://cdn.verdaccio.dev/logos/default.png
Original file line number Diff line number Diff line change @@ -20,6 +20,9 @@ metadata:
20
20
name : {{ $fullName }}
21
21
labels :
22
22
{{- include "verdaccio.labels" . | nindent 4 }}
23
+ {{- with .Values.ingress.labels }}
24
+ {{- toYaml . | nindent 4 }}
25
+ {{- end }}
23
26
{{- with .Values.ingress.annotations }}
24
27
annotations :
25
28
{{- include "tplvalues.render" (dict "value" . "context" $) | nindent 4 }}
Original file line number Diff line number Diff line change @@ -84,6 +84,7 @@ ingress:
84
84
# Use this to define, ALB ingress's actions annotation based routing. Ex: for ssl-redirect
85
85
# Ref: https://kubernetes-sigs.github.io/aws-load-balancer-controller/latest/guide/tasks/ssl_redirect/
86
86
extraPaths : []
87
+ labels : {}
87
88
# hosts:
88
89
# - npm.blah.com
89
90
# annotations:
You can’t perform that action at this time.
0 commit comments