mirror of
https://github.com/helm/charts.git
synced 2026-08-23 22:37:45 +00:00
* 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:
committed by
k8s-ci-robot
parent
8f7c90ce19
commit
65046e3cee
@@ -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:
|
||||
|
||||
@@ -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 }}
|
||||
|
||||
Reference in New Issue
Block a user