File tree Expand file tree Collapse file tree 3 files changed +4
-4
lines changed
Expand file tree Collapse file tree 3 files changed +4
-4
lines changed Original file line number Diff line number Diff line change 11apiVersion : v1
22description : A declarative helm chart for deploying common types of services on Kubernetes
33name : monochart
4- version : 0.10 .0
5- appVersion : 0.10 .0
4+ version : 0.11 .0
5+ appVersion : 0.11 .0
66home : https://github.com/cloudposse/charts/tree/master/incubator/monochart
77icon : https://raw.githubusercontent.com/cloudposse/charts/master/incubator/monochart/logo.png
88maintainers :
Original file line number Diff line number Diff line change 11{{- $root := . -}}
2- {{- $servicePort := .Values.service.ports.default.external -}}
32{{- $serviceName := include "common.fullname" . -}}
43{{- range $name, $ingress := .Values.ingress -}}
54{{- if $ingress.enabled }}
2726 - path : {{ $path }}
2827 backend :
2928 serviceName : {{ $serviceName }}
30- servicePort : {{ $servicePort }}
29+ servicePort : {{ hasKey $ingress "port" | ternary $ingress.port "default" }}
3130{{- end -}}
3231{{- with $ingress.tls }}
3332 tls :
Original file line number Diff line number Diff line change @@ -329,6 +329,7 @@ persistence:
329329ingress :
330330 default :
331331 enabled : false
332+ port : default
332333# labels:
333334# dns: "route53"
334335# annotations:
You can’t perform that action at this time.
0 commit comments