mirror of
https://github.com/helm/charts.git
synced 2026-08-23 22:37:45 +00:00
Fix broken ingress template for redmine chart (#9145)
Signed-off-by: Agustin Lucchetti <agustin.lucchetti@gmail.com>
This commit is contained in:
committed by
k8s-ci-robot
parent
923ed54926
commit
a2b14e04f2
@@ -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:
|
||||
|
||||
@@ -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 }}
|
||||
|
||||
|
||||
@@ -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 }}
|
||||
|
||||
Reference in New Issue
Block a user