[bitnami/rabbitmq] Update plugins section in the README (#2989)

Signed-off-by: Andrés Bono <andresbono@vmware.com>
This commit is contained in:
Andrés Bono
2020-07-01 16:28:47 +02:00
committed by GitHub
parent 6e756f981f
commit bc14dfdc6c
2 changed files with 3 additions and 3 deletions
+1 -1
View File
@@ -1,6 +1,6 @@
apiVersion: v1
name: rabbitmq
version: 7.4.1
version: 7.4.2
appVersion: 3.8.5
description: Open source message broker software that implements the Advanced Message Queuing Protocol (AMQP)
keywords:
+2 -2
View File
@@ -484,10 +484,10 @@ $ docker run --rm -it bitnami/rabbitmq -- ls /opt/bitnami/rabbitmq/plugins/
By default, this chart enables `rabbitmq_management` and `rabbitmq_peer_discovery_k8s` since they are required for RabbitMQ to work on K8s. To enable extra plugins, set the `extraPlugins` parameter with the list of plugins you want to enable.
In addition to this, you can also use the `customPlugins` parameter to indicate a list of URLs where to download you custom plugins for RabbitMQ. For instance, use the parameters below to download a custom plugin during the container initialization and enable it:
In addition to this, you can also use the `communityPlugins` parameter to indicate a list of URLs separated by spaces where to download you custom plugins for RabbitMQ. For instance, use the parameters below to download a custom plugin during the container initialization and enable it:
```console
customPlugins="http://some-public-url/my-custom-plugin-X.Y.Z.ez"
communityPlugins="http://some-public-url/my-custom-plugin-X.Y.Z.ez"
extraPlugins="my-custom-plugin"
```