mirror of
https://github.com/bitnami/charts.git
synced 2026-03-07 08:07:55 +08:00
[bitnami/rabbitmq] Add externalIP custom value (#2534)
* Add externalIP custom value * Merge master and update chart version * [bitnami/rabbitmq] Update components versions Signed-off-by: Bitnami Containers <containers@bitnami.com> Co-authored-by: Fadhil Yaacob <mohamadfadhil.yaacob@onapp.com> Co-authored-by: Marcos Bjoerkelund <marcos@bitnami.com> Co-authored-by: Bitnami Containers <containers@bitnami.com>
This commit is contained in:
@@ -1,6 +1,6 @@
|
||||
apiVersion: v1
|
||||
name: rabbitmq
|
||||
version: 6.25.8
|
||||
version: 6.25.9
|
||||
appVersion: 3.8.3
|
||||
description: Open source message broker software that implements the Advanced Message Queuing Protocol (AMQP)
|
||||
keywords:
|
||||
|
||||
@@ -95,7 +95,8 @@ The following table lists the configurable parameters of the RabbitMQ chart and
|
||||
| `ldap.tls.enabled` | Enable TLS for LDAP connections | `false` (if set to true, check advancedConfiguration parameter in values.yml) |
|
||||
| `service.type` | Kubernetes Service type | `ClusterIP` |
|
||||
| `service.port` | Amqp port | `5672` |
|
||||
| `service.loadBalancerIP` | LoadBalancerIP for the service | `nil` |
|
||||
| `service.loadBalancerIP` | LoadBalancerIP for the service | `nil` |
|
||||
| `service.externalIP` | ExternalIP for the service | `nil` |
|
||||
| `service.tlsPort` | Amqp TLS port | `5671` |
|
||||
| `service.distPort` | Erlang distribution server port | `25672` |
|
||||
| `service.nodePort` | Node port override, if serviceType NodePort | _random available between 30000-32767_ |
|
||||
|
||||
@@ -26,6 +26,10 @@ spec:
|
||||
{{- if (and (eq .Values.service.type "LoadBalancer") (not (empty .Values.service.loadBalancerIP))) }}
|
||||
loadBalancerIP: {{ .Values.service.loadBalancerIP }}
|
||||
{{- end }}
|
||||
{{- if (not (empty .Values.service.externalIP)) }}
|
||||
externalIPs:
|
||||
- {{ .Values.service.externalIP}}
|
||||
{{- end }}
|
||||
ports:
|
||||
- name: epmd
|
||||
port: 4369
|
||||
|
||||
@@ -14,7 +14,7 @@
|
||||
image:
|
||||
registry: docker.io
|
||||
repository: bitnami/rabbitmq
|
||||
tag: 3.8.3-debian-10-r71
|
||||
tag: 3.8.3-debian-10-r73
|
||||
|
||||
## set to true if you would like to see extra information on logs
|
||||
## it turns BASH and NAMI debugging in minideb
|
||||
@@ -197,6 +197,10 @@ service:
|
||||
##
|
||||
# nodePort: 30672
|
||||
|
||||
## Set the ExternalIP
|
||||
##
|
||||
# externalIPs:
|
||||
|
||||
## Set the LoadBalancerIP
|
||||
##
|
||||
# loadBalancerIP:
|
||||
|
||||
@@ -14,7 +14,7 @@
|
||||
image:
|
||||
registry: docker.io
|
||||
repository: bitnami/rabbitmq
|
||||
tag: 3.8.3-debian-10-r71
|
||||
tag: 3.8.3-debian-10-r73
|
||||
|
||||
## set to true if you would like to see extra information on logs
|
||||
## it turns BASH and NAMI debugging in minideb
|
||||
@@ -198,6 +198,10 @@ service:
|
||||
##
|
||||
# nodePort: 30672
|
||||
|
||||
## Set the ExternalIP
|
||||
##
|
||||
# externalIPs:
|
||||
|
||||
## Set the LoadBalancerIP
|
||||
##
|
||||
# loadBalancerIP:
|
||||
|
||||
Reference in New Issue
Block a user