Fix broken ingress template for redmine chart (#9145)

Signed-off-by: Agustin Lucchetti <agustin.lucchetti@gmail.com>
This commit is contained in:
Agustin Lucchetti
2018-11-12 00:09:42 -08:00
committed by k8s-ci-robot
parent 923ed54926
commit a2b14e04f2
3 changed files with 7 additions and 6 deletions
+1 -1
View File
@@ -1,5 +1,5 @@
name: redmine
version: 6.0.1
version: 6.0.2
appVersion: 3.4.6
description: A flexible project management web application.
keywords:
+3 -1
View File
@@ -17,7 +17,9 @@
{{- else if .Values.ingress.enabled }}
echo "Redmine URL: http://{{ .Values.ingress.hostname }}/"
{{- range .Values.ingress.hosts }}
echo "Redmine URL: http://{{ .name }}/"
{{- end }}
{{- else if contains "ClusterIP" .Values.serviceType }}
+3 -4
View File
@@ -27,10 +27,9 @@ spec:
servicePort: 80
{{- if .tls }}
tls:
- hosts:
- {{ .name }}
secretName: {{ .tlsSecret }}
{{ toYaml .Values.ingress.tls | indent 4 }}
- secretName: {{ .tlsSecret }}
hosts:
- {{ .name }}
{{- end }}
---
{{- end }}