Skip to content
Snippets Groups Projects
Unverified Commit cee5fdcd authored by Göran Pöhner's avatar Göran Pöhner Committed by GitHub
Browse files

Rabbitmq 0.4.10 fails to start [error] Too short cookie string (#892)

Fixes #890
parent bef2615d
Branches
Tags
No related merge requests found
...@@ -7,6 +7,6 @@ type: application ...@@ -7,6 +7,6 @@ type: application
maintainers: maintainers:
- name: groundhog2k - name: groundhog2k
version: 0.4.10 version: 0.4.11
appVersion: "3.9.13" appVersion: "3.9.13"
# RabbitMQ # RabbitMQ
![Version: 0.4.10](https://img.shields.io/badge/Version-0.4.10-informational?style=flat-square) ![Type: application](https://img.shields.io/badge/Type-application-informational?style=flat-square) ![AppVersion: 3.9.13](https://img.shields.io/badge/AppVersion-3.9.13-informational?style=flat-square) ![Version: 0.4.11](https://img.shields.io/badge/Version-0.4.11-informational?style=flat-square) ![Type: application](https://img.shields.io/badge/Type-application-informational?style=flat-square) ![AppVersion: 3.9.13](https://img.shields.io/badge/AppVersion-3.9.13-informational?style=flat-square)
## Changelog ## Changelog
...@@ -150,7 +150,7 @@ Section to define custom services ...@@ -150,7 +150,7 @@ Section to define custom services
| plugins | list | `[]` | List of additional RabbitMQ plugins that should be activated (see: [RabbitMQ plugins](https://www.rabbitmq.com/plugins.html)) | | plugins | list | `[]` | List of additional RabbitMQ plugins that should be activated (see: [RabbitMQ plugins](https://www.rabbitmq.com/plugins.html)) |
| authentication.user | string | `"guest"` | Initial user name | | authentication.user | string | `"guest"` | Initial user name |
| authentication.password | string | `"guest"` | Initial password | | authentication.password | string | `"guest"` | Initial password |
| authentication.erlangCookie | string | `nil` | Erlang cookie (default: Random base64 value) | | authentication.erlangCookie | string | `nil` | Erlang cookie (MANDATORY) (Alternative: Set the environment variable ERLANG_COOKIE) |
| clustering.rebalance | bool | `true` | Enable rebalance queues with master when new replica is created | | clustering.rebalance | bool | `true` | Enable rebalance queues with master when new replica is created |
| clustering.useLongName | bool | `true` | Use FQDN for RabbitMQ node names | | clustering.useLongName | bool | `true` | Use FQDN for RabbitMQ node names |
......
...@@ -7,4 +7,5 @@ ...@@ -7,4 +7,5 @@
| 0.4.8 | 3.9.13 | Upgraded to RabbitMQ 3.9.13<br>Fixed ingress API detection<br>Implemented startupProbe support | | 0.4.8 | 3.9.13 | Upgraded to RabbitMQ 3.9.13<br>Fixed ingress API detection<br>Implemented startupProbe support |
| 0.4.9 | 3.9.13 | Fixed startupProbe | | 0.4.9 | 3.9.13 | Fixed startupProbe |
| 0.4.10 | 3.9.13 | Implemented support for extra secrets and advanced configuration capabilites | | 0.4.10 | 3.9.13 | Implemented support for extra secrets and advanced configuration capabilites |
| 0.4.11 | 3.9.13 | Corrected chart documentation |
| | | | | | | |
...@@ -208,7 +208,8 @@ plugins: [] ...@@ -208,7 +208,8 @@ plugins: []
# Default user and erlang cookie # Default user and erlang cookie
# The erlang cookie is important for clustered or container based usage # The erlang cookie is important for clustered or container based usage
# Find more information about it at https://hub.docker.com/_/rabbitmq and https://www.rabbitmq.com/clustering.html#erlang-cookie # Find more information about it at https://hub.docker.com/_/rabbitmq and https://www.rabbitmq.com/clustering.html#erlang-cookie
# If erlang cookie is not provided in configuration a random value will be generated # The erlang cookie is a MANDATORY VALUE
# Alternative is to set the environment variable ERLANG_COOKIE
authentication: authentication:
## Initial user name ## Initial user name
user: "guest" user: "guest"
...@@ -216,7 +217,7 @@ authentication: ...@@ -216,7 +217,7 @@ authentication:
## Initial password ## Initial password
password: "guest" password: "guest"
## Erlang cookie (mandatory) ## Erlang cookie (MANDATORY)
erlangCookie: erlangCookie:
# RabbitMQ specific configuration options described at https://www.rabbitmq.com/configure.html#config-items # RabbitMQ specific configuration options described at https://www.rabbitmq.com/configure.html#config-items
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment