fix(stable/rabbitmq-ha): Enabling TLS for ingress resulted in YAML parse error (#4835) (#4836)

* fix(stable/rabbitmq-ha): Enabling TLS for ingress resulted in YAML parse error (#4835)

* fix(stable/rabbitmq-ha): Increment the new chart version to be greater than the existing version of

* fix(stable/rabbitmq-ha): Use rabbitmqManagerPort for ingress
This commit is contained in:
Enrico Stahn
2018-05-03 11:19:51 -07:00
committed by k8s-ci-robot
parent 8f7c90ce19
commit 65046e3cee
2 changed files with 6 additions and 8 deletions
+1 -1
View File
@@ -1,7 +1,7 @@
name: rabbitmq-ha
apiVersion: v1
appVersion: 3.7.4
version: 1.3.3
version: 1.3.4
description: Highly available RabbitMQ cluster, the open source message broker
software that implements the Advanced Message Queuing Protocol (AMQP).
keywords:
+5 -7
View File
@@ -24,15 +24,13 @@ spec:
- path: {{ .Values.ingress.path }}
backend:
serviceName: {{ template "rabbitmq-ha.fullname" . }}
servicePort: http
servicePort: {{ .Values.rabbitmqManagerPort }}
{{- if .Values.ingress.tls }}
tls:
- hosts:
{{- if .Values.ingress.hostName }}
- secretName: {{ .Values.ingress.tlsSecret }}
{{- if .Values.ingress.hostName }}
hosts:
- {{ .Values.ingress.hostName }}
secretName: {{ .Values.ingress.tlsSecret }}
{{- else}}
- secretName: {{ .Values.ingress.tlsSecret }}
{{- end }}
{{- end }}
{{- end }}
{{- end }}