fix: add erlang cookie for rabbitmq

This commit is contained in:
icecheng 2025-09-23 16:06:51 +08:00
parent ded9db53fc
commit 7b37b57331
2 changed files with 4 additions and 2 deletions

View File

@ -25,6 +25,7 @@ auth:
securePassword: true securePassword: true
updatePassword: false updatePassword: false
enableLoopbackUser: false enableLoopbackUser: false
erlangCookie: "iGF4ZVjeaXgHW2xELZTxJl8a6aFY7nes"
tls: tls:
enabled: false enabled: false
logs: "-" logs: "-"
@ -186,7 +187,7 @@ extraConfiguration: |-
disk_free_limit.absolute = 50MB disk_free_limit.absolute = 50MB
replicaCount: 1 replicaCount: 1
updateStrategy: updateStrategy:
type: Recreate type: RollingUpdate
podSecurityContext: podSecurityContext:
enabled: true enabled: true
fsGroupChangePolicy: Always fsGroupChangePolicy: Always

View File

@ -162,6 +162,7 @@ auth:
## ref: https://github.com/bitnami/containers/tree/main/bitnami/rabbitmq#environment-variables ## ref: https://github.com/bitnami/containers/tree/main/bitnami/rabbitmq#environment-variables
## ##
updatePassword: false updatePassword: false
## @param auth.existingPasswordSecret Existing secret with RabbitMQ credentials (existing secret must contain a value for `rabbitmq-password` key or override with setting auth.existingSecretPasswordKey) ## @param auth.existingPasswordSecret Existing secret with RabbitMQ credentials (existing secret must contain a value for `rabbitmq-password` key or override with setting auth.existingSecretPasswordKey)
## e.g: ## e.g:
## existingPasswordSecret: name-of-existing-secret ## existingPasswordSecret: name-of-existing-secret
@ -177,7 +178,7 @@ auth:
## @param auth.erlangCookie Erlang cookie to determine whether different nodes are allowed to communicate with each other ## @param auth.erlangCookie Erlang cookie to determine whether different nodes are allowed to communicate with each other
## ref: https://github.com/bitnami/containers/tree/main/bitnami/rabbitmq#environment-variables ## ref: https://github.com/bitnami/containers/tree/main/bitnami/rabbitmq#environment-variables
## ##
erlangCookie: "" erlangCookie: "iGF4ZVjeaXgHW2xELZTxJl8a6aFY7nes"
## @param auth.existingErlangSecret Existing secret with RabbitMQ Erlang cookie (must contain a value for `rabbitmq-erlang-cookie` key or override with auth.existingSecretErlangKey) ## @param auth.existingErlangSecret Existing secret with RabbitMQ Erlang cookie (must contain a value for `rabbitmq-erlang-cookie` key or override with auth.existingSecretErlangKey)
## e.g: ## e.g:
## existingErlangSecret: name-of-existing-secret ## existingErlangSecret: name-of-existing-secret