From ebc07b91528b63bc9ecec155cdfc7cf1cf52fbcf Mon Sep 17 00:00:00 2001 From: Joe Marty Date: Mon, 16 Nov 2020 04:23:51 -0600 Subject: [PATCH] Clarify configuration params (#4363) --- bitnami/rabbitmq/README.md | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/bitnami/rabbitmq/README.md b/bitnami/rabbitmq/README.md index 2c1ef9dbd..16860bb1b 100644 --- a/bitnami/rabbitmq/README.md +++ b/bitnami/rabbitmq/README.md @@ -73,9 +73,9 @@ The following table lists the configurable parameters of the RabbitMQ chart and | `image.debug` | Set to true if you would like to see extra information on logs | `false` | | `auth.username` | RabbitMQ application username | `user` | | `auth.password` | RabbitMQ application password | _random 10 character long alphanumeric string_ | -| `auth.existingPasswordSecret` | Existing secret with RabbitMQ credentials | `nil` (evaluated as a template) | +| `auth.existingPasswordSecret` | Existing secret with RabbitMQ credentials (must contain a value for `rabbitmq-password` key) | `nil` (evaluated as a template) | | `auth.erlangCookie` | Erlang cookie | _random 32 character long alphanumeric string_ | -| `auth.existingErlangSecret` | Existing secret with RabbitMQ Erlang cookie | `nil` | +| `auth.existingErlangSecret` | Existing secret with RabbitMQ Erlang cookie (must contain a value for `rabbitmq-erlang-cookie` key) | `nil` | | `auth.tls.enabled` | Enable TLS support on RabbitMQ | `false` | | `auth.tls.failIfNoPeerCert` | When set to true, TLS connection will be rejected if client fails to provide a certificate | `true` | | `auth.tls.sslOptionsVerify` | Should [peer verification](https://www.rabbitmq.com/ssl.html#peer-verification) be enabled? | `verify_peer` | @@ -90,9 +90,9 @@ The following table lists the configurable parameters of the RabbitMQ chart and | `memoryHighWatermark.enabled` | Enable configuring Memory high watermark on RabbitMQ | `false` | | `memoryHighWatermark.type` | Memory high watermark type. Either `absolute` or `relative` | `relative` | | `memoryHighWatermark.value` | Memory high watermark value | `0.4` | -| `plugins` | List of plugins to enable | `rabbitmq_management rabbitmq_peer_discovery_k8s` | +| `plugins` | List of default plugins to enable (should only be altered to remove defaults; for additional plugins use `extraPlugins`) | `rabbitmq_management rabbitmq_peer_discovery_k8s` | | `communityPlugins` | List of custom plugins (URLs) to be downloaded during container initialization | `nil` | -| `extraPlugins` | Extra plugins to enable | `nil` | +| `extraPlugins` | Extra plugins to enable (single string containing a space-separated list) | `nil` | | `clustering.addressType` | Switch clustering mode. Either `ip` or `hostname` | `hostname` | | `clustering.rebalance` | Rebalance master for queues in cluster when new replica is created | `false` | | `clustering.forceBoot` | Rebalance master for queues in cluster when new replica is created | `false` |