File tree Expand file tree Collapse file tree 3 files changed +11
-1
lines changed
Expand file tree Collapse file tree 3 files changed +11
-1
lines changed 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.2
4+ version : 0.16.3
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 22{{- $serviceName := include "verdaccio.fullname" . -}}
33{{- $servicePort := .Values.service.port -}}
44{{- $paths := .Values.ingress.paths -}}
5+ {{- $ingressExtraPaths := .Values.ingress.extraPaths -}}
56{{- if .Values.ingress.useExtensionsApi }}
67apiVersion : extensions/v1beta1
78{{- else }}
2627 - host : {{ $host }}
2728 http :
2829 paths :
30+ {{- range $ingressExtraPaths }}
31+ - path : {{ default "/" .path | quote }}
32+ backend :
33+ serviceName : {{ default $serviceName .service }}
34+ servicePort : {{ default $servicePort .port }}
35+ {{- end }}
2936 {{- range $p := $paths }}
3037 - path : {{ $p }}
3138 backend :
Original file line number Diff line number Diff line change @@ -45,6 +45,9 @@ ingress:
4545 useExtensionsApi : false
4646 paths :
4747 - /
48+ # Use this to define, ALB ingress's actions annotation based routing. Ex: for ssl-redirect
49+ # Ref: https://kubernetes-sigs.github.io/aws-load-balancer-controller/latest/guide/tasks/ssl_redirect/
50+ extraPaths : []
4851# hosts:
4952# - npm.blah.com
5053# annotations:
You can’t perform that action at this time.
0 commit comments