RabbitMQ is an open source general-purpose message broker that is designed for consistent, highly-available messaging scenarios (both synchronous and asynchronous).
Trademarks: This software listing is packaged by Bitnami. The respective trademarks mentioned in the offering are owned by the respective companies, and use of them does not imply any affiliation or endorsement.
$ helm repo add bitnami https://charts.bitnami.com/bitnami
$ helm install my-release bitnami/rabbitmq
This chart bootstraps a RabbitMQ deployment on a Kubernetes cluster using the Helm package manager.
Bitnami charts can be used with Kubeapps for deployment and management of Helm Charts in clusters. This chart has been tested to work with NGINX Ingress, cert-manager, fluentd and Prometheus on top of the BKPR.
- Kubernetes 1.19
- Helm 3.2.0
- PV provisioner support in the underlying infrastructure
To install the chart with the release name my-release
:
$ helm install my-release bitnami/rabbitmq
The command deploys RabbitMQ on the Kubernetes cluster in the default configuration. The Parameters section lists the parameters that can be configured during installation.
Tip: List all releases using
helm list
To uninstall/delete the my-release
deployment:
$ helm delete my-release
The command removes all the Kubernetes components associated with the chart and deletes the release.
Name | Description | Value |
---|---|---|
global.imageRegistry |
Global Docker image registry | "" |
global.imagePullSecrets |
Global Docker registry secret names as an array | [] |
global.storageClass |
Global StorageClass for Persistent Volume(s) | "" |
Name | Description | Value |
---|---|---|
image.registry |
RabbitMQ image registry | docker.io |
image.repository |
RabbitMQ image repository | bitnami/rabbitmq |
image.tag |
RabbitMQ image tag (immutable tags are recommended) | 3.9.13-debian-10-r13 |
image.pullPolicy |
RabbitMQ image pull policy | IfNotPresent |
image.pullSecrets |
Specify docker-registry secret names as an array | [] |
image.debug |
Set to true if you would like to see extra information on logs | false |
Name | Description | Value |
---|---|---|
nameOverride |
String to partially override rabbitmq.fullname template (will maintain the release name) | "" |
fullnameOverride |
String to fully override rabbitmq.fullname template | "" |
kubeVersion |
Force target Kubernetes version (using Helm capabilities if not set) | "" |
clusterDomain |
Kubernetes Cluster Domain | cluster.local |
extraDeploy |
Array of extra objects to deploy with the release | [] |
diagnosticMode.enabled |
Enable diagnostic mode (all probes will be disabled and the command will be overridden) | false |
diagnosticMode.command |
Command to override all containers in the deployment | ["sleep"] |
diagnosticMode.args |
Args to override all containers in the deployment | ["infinity"] |
hostAliases |
Deployment pod host aliases | [] |
commonAnnotations |
Annotations to add to all deployed objects | {} |
auth.username |
RabbitMQ application username | user |
auth.password |
RabbitMQ application password | "" |
auth.existingPasswordSecret |
Existing secret with RabbitMQ credentials (must contain a value for rabbitmq-password key) |
"" |
auth.erlangCookie |
Erlang cookie to determine whether different nodes are allowed to communicate with each other | "" |
auth.existingErlangSecret |
Existing secret with RabbitMQ Erlang cookie (must contain a value for rabbitmq-erlang-cookie key) |
"" |
auth.tls.enabled |
Enable TLS support on RabbitMQ | false |
auth.tls.autoGenerated |
Generate automatically self-signed TLS certificates | 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 be enabled? | verify_peer |
auth.tls.caCertificate |
Certificate Authority (CA) bundle content | "" |
auth.tls.serverCertificate |
Server certificate content | "" |
auth.tls.serverKey |
Server private key content | "" |
auth.tls.existingSecret |
Existing secret with certificate content to RabbitMQ credentials | "" |
auth.tls.existingSecretFullChain |
Whether or not the existing secret contains the full chain in the certificate (tls.crt ). Will be used in place of ca.cert if true . |
false |
logs |
Path of the RabbitMQ server's Erlang log file. Value for the RABBITMQ_LOGS environment variable |
- |
ulimitNofiles |
RabbitMQ Max File Descriptors | 65536 |
maxAvailableSchedulers |
RabbitMQ maximum available scheduler threads | "" |
onlineSchedulers |
RabbitMQ online scheduler threads | "" |
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 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 Community plugins (URLs) to be downloaded during container initialization | "" |
extraPlugins |
Extra plugins to enable (single string containing a space-separated list) | rabbitmq_auth_backend_ldap |
clustering.enabled |
Enable RabbitMQ clustering | true |
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 |
Force boot of an unexpectedly shut down cluster (in an unexpected order). | false |
clustering.partitionHandling |
Switch Partition Handling Strategy. Either autoheal or pause-minority or pause-if-all-down or ignore |
autoheal |
loadDefinition.enabled |
Enable loading a RabbitMQ definitions file to configure RabbitMQ | false |
loadDefinition.existingSecret |
Existing secret with the load definitions file | "" |
command |
Override default container command (useful when using custom images) | [] |
args |
Override default container args (useful when using custom images) | [] |
terminationGracePeriodSeconds |
Default duration in seconds k8s waits for container to exit before sending kill signal. | 120 |
extraEnvVars |
Extra environment variables to add to RabbitMQ pods | [] |
extraEnvVarsCM |
Name of existing ConfigMap containing extra environment variables | "" |
extraEnvVarsSecret |
Name of existing Secret containing extra environment variables (in case of sensitive data) | "" |
extraContainerPorts |
Extra ports to be included in container spec, primarily informational | [] |
configuration |
RabbitMQ Configuration file content: required cluster configuration | "" |
extraConfiguration |
Configuration file content: extra configuration to be appended to RabbitMQ configuration | "" |
advancedConfiguration |
Configuration file content: advanced configuration | "" |
ldap.enabled |
Enable LDAP support | false |
ldap.servers |
List of LDAP servers hostnames | [] |
ldap.port |
LDAP servers port | 389 |
ldap.user_dn_pattern |
Pattern used to translate the provided username into a value to be used for the LDAP bind | cn=${username},dc=example,dc=org |
ldap.tls.enabled |
If you enable TLS/SSL you can set advanced options using the advancedConfiguration parameter |
false |
extraVolumeMounts |
Optionally specify extra list of additional volumeMounts | [] |
extraVolumes |
Optionally specify extra list of additional volumes . | [] |
extraSecrets |
Optionally specify extra secrets to be created by the chart. | {} |
extraSecretsPrependReleaseName |
Set this flag to true if extraSecrets should be created with prepended. | false |
Name | Description | Value |
---|---|---|
replicaCount |
Number of RabbitMQ replicas to deploy | 1 |
schedulerName |
Use an alternate scheduler, e.g. "stork". | "" |
podManagementPolicy |
Pod management policy | OrderedReady |
podLabels |
RabbitMQ Pod labels. Evaluated as a template | {} |
podAnnotations |
RabbitMQ Pod annotations. Evaluated as a template | {} |
updateStrategyType |
Update strategy type for RabbitMQ statefulset | RollingUpdate |
statefulsetLabels |
RabbitMQ statefulset labels. Evaluated as a template | {} |
priorityClassName |
Name of the priority class to be used by RabbitMQ pods, priority class needs to be created beforehand | "" |
podAffinityPreset |
Pod affinity preset. Ignored if affinity is set. Allowed values: soft or hard |
"" |
podAntiAffinityPreset |
Pod anti-affinity preset. Ignored if affinity is set. Allowed values: soft or hard |
soft |
nodeAffinityPreset.type |
Node affinity preset type. Ignored if affinity is set. Allowed values: soft or hard |
"" |
nodeAffinityPreset.key |
Node label key to match Ignored if affinity is set. |
"" |
nodeAffinityPreset.values |
Node label values to match. Ignored if affinity is set. |
[] |
affinity |
Affinity for pod assignment. Evaluated as a template | {} |
nodeSelector |
Node labels for pod assignment. Evaluated as a template | {} |
tolerations |
Tolerations for pod assignment. Evaluated as a template | [] |
topologySpreadConstraints |
Topology Spread Constraints for pod assignment spread across your cluster among failure-domains. Evaluated as a template | [] |
podSecurityContext.enabled |
Enable RabbitMQ pods' Security Context | true |
podSecurityContext.fsGroup |
Group ID for the filesystem used by the containers | 1001 |
podSecurityContext.runAsUser |
User ID for the service user running the pod | 1001 |
containerSecurityContext |
RabbitMQ containers' Security Context | {} |
resources.limits |
The resources limits for RabbitMQ containers | {} |
resources.requests |
The requested resources for RabbitMQ containers | {} |
livenessProbe.enabled |
Enable livenessProbe | true |
livenessProbe.initialDelaySeconds |
Initial delay seconds for livenessProbe | 120 |
livenessProbe.periodSeconds |
Period seconds for livenessProbe | 30 |
livenessProbe.timeoutSeconds |
Timeout seconds for livenessProbe | 20 |
livenessProbe.failureThreshold |
Failure threshold for livenessProbe | 6 |
livenessProbe.successThreshold |
Success threshold for livenessProbe | 1 |
readinessProbe.enabled |
Enable readinessProbe | true |
readinessProbe.initialDelaySeconds |
Initial delay seconds for readinessProbe | 10 |
readinessProbe.periodSeconds |
Period seconds for readinessProbe | 30 |
readinessProbe.timeoutSeconds |
Timeout seconds for readinessProbe | 20 |
readinessProbe.failureThreshold |
Failure threshold for readinessProbe | 3 |
readinessProbe.successThreshold |
Success threshold for readinessProbe | 1 |
customLivenessProbe |
Override default liveness probe | {} |
customReadinessProbe |
Override default readiness probe | {} |
customStartupProbe |
Define a custom startup probe | {} |
initContainers |
Add init containers to the RabbitMQ pod | [] |
sidecars |
Add sidecar containers to the RabbitMQ pod | [] |
pdb.create |
Enable/disable a Pod Disruption Budget creation | false |
pdb.minAvailable |
Minimum number/percentage of pods that should remain scheduled | 1 |
pdb.maxUnavailable |
Maximum number/percentage of pods that may be made unavailable | "" |
Name | Description | Value |
---|---|---|
serviceAccount.create |
Enable creation of ServiceAccount for RabbitMQ pods | true |
serviceAccount.name |
Name of the created serviceAccount | "" |
serviceAccount.automountServiceAccountToken |
Auto-mount the service account token in the pod | true |
rbac.create |
Whether RBAC rules should be created | true |
Name | Description | Value |
---|---|---|
persistence.enabled |
Enable RabbitMQ data persistence using PVC | true |
persistence.storageClass |
PVC Storage Class for RabbitMQ data volume | "" |
persistence.selector |
Selector to match an existing Persistent Volume | {} |
persistence.accessMode |
PVC Access Mode for RabbitMQ data volume | ReadWriteOnce |
persistence.existingClaim |
Provide an existing PersistentVolumeClaims | "" |
persistence.mountPath |
The path the volume will be mounted at | /bitnami/rabbitmq/mnesia |
persistence.subPath |
The subdirectory of the volume to mount to | "" |
persistence.size |
PVC Storage Request for RabbitMQ data volume | 8Gi |
persistence.volumes |
Additional volumes without creating PVC | [] |
persistence.annotations |
Persistence annotations. Evaluated as a template | {} |
Name | Description | Value |
---|---|---|
service.type |
Kubernetes Service type | ClusterIP |
service.portEnabled |
Amqp port. Cannot be disabled when auth.tls.enabled is false . Listener can be disabled with listeners.tcp = none . |
true |
service.port |
Amqp port | 5672 |
service.portName |
Amqp service port name | amqp |
service.tlsPort |
Amqp TLS port | 5671 |
service.tlsPortName |
Amqp TLS service port name | amqp-ssl |
service.nodePort |
Node port override for amqp port, if serviceType is NodePort or LoadBalancer |
"" |
service.tlsNodePort |
Node port override for amqp-ssl port, if serviceType is NodePort or LoadBalancer |
"" |
service.distPortEnabled |
Erlang distribution server port | true |
service.distPort |
Erlang distribution server port | 25672 |
service.distPortName |
Erlang distribution service port name | dist |
service.distNodePort |
Node port override for dist port, if serviceType is NodePort |
"" |
service.managerPortEnabled |
RabbitMQ Manager port | true |
service.managerPort |
RabbitMQ Manager port | 15672 |
service.managerPortName |
RabbitMQ Manager service port name | http-stats |
service.managerNodePort |
Node port override for http-stats port, if serviceType NodePort |
"" |
service.metricsPort |
RabbitMQ Prometheues metrics port | 9419 |
service.metricsPortName |
RabbitMQ Prometheues metrics service port name | metrics |
service.metricsNodePort |
Node port override for metrics port, if serviceType is NodePort |
"" |
service.epmdPortEnabled |
RabbitMQ EPMD Discovery service port | true |
service.epmdNodePort |
Node port override for epmd port, if serviceType is NodePort |
"" |
service.epmdPortName |
EPMD Discovery service port name | epmd |
service.extraPorts |
Extra ports to expose in the service | [] |
service.loadBalancerSourceRanges |
Address(es) that are allowed when service is LoadBalancer |
[] |
service.externalIPs |
Set the ExternalIPs | [] |
service.externalTrafficPolicy |
Enable client source IP preservation | Cluster |
service.loadBalancerIP |
Set the LoadBalancerIP | "" |
service.labels |
Service labels. Evaluated as a template | {} |
service.annotations |
Service annotations. Evaluated as a template | {} |
service.annotationsHeadless |
Headless Service annotations. Evaluated as a template | {} |
ingress.enabled |
Enable ingress resource for Management console | false |
ingress.path |
Path for the default host. You may need to set this to '/*' in order to use this with ALB ingress controllers. | / |
ingress.pathType |
Ingress path type | ImplementationSpecific |
ingress.hostname |
Default host for the ingress resource | rabbitmq.local |
ingress.annotations |
Additional annotations for the Ingress resource. To enable certificate autogeneration, place here your cert-manager annotations. | {} |
ingress.tls |
Enable TLS configuration for the hostname defined at ingress.hostname parameter |
false |
ingress.selfSigned |
Set this to true in order to create a TLS secret for this ingress record | false |
ingress.extraHosts |
The list of additional hostnames to be covered with this ingress record. | [] |
ingress.extraTls |
The tls configuration for additional hostnames to be covered with this ingress record. | [] |
ingress.secrets |
Custom TLS certificates as secrets | [] |
ingress.ingressClassName |
IngressClass that will be be used to implement the Ingress (Kubernetes 1.18 ) | "" |
networkPolicy.enabled |
Enable creation of NetworkPolicy resources | false |
networkPolicy.allowExternal |
Don't require client label for connections | true |
networkPolicy.additionalRules |
Additional NetworkPolicy Ingress "from" rules to set. Note that all rules are OR-ed. | [] |
Name | Description | Value |
---|---|---|
metrics.enabled |
Enable exposing RabbitMQ metrics to be gathered by Prometheus | false |
metrics.plugins |
Plugins to enable Prometheus metrics in RabbitMQ | rabbitmq_prometheus |
metrics.podAnnotations |
Annotations for enabling prometheus to access the metrics endpoint | {} |
metrics.serviceMonitor.enabled |
Create ServiceMonitor Resource for scraping metrics using PrometheusOperator | false |
metrics.serviceMonitor.namespace |
Specify the namespace in which the serviceMonitor resource will be created | "" |
metrics.serviceMonitor.interval |
Specify the interval at which metrics should be scraped | 30s |
metrics.serviceMonitor.scrapeTimeout |
Specify the timeout after which the scrape is ended | "" |
metrics.serviceMonitor.relabellings |
MetricsRelabelConfigs to apply to samples before ingestion. DEPRECATED: Will be removed in next major. | [] |
metrics.serviceMonitor.relabelings |
RelabelConfigs to apply to samples before scraping. | [] |
metrics.serviceMonitor.metricRelabelings |
MetricsRelabelConfigs to apply to samples before ingestion. | [] |
metrics.serviceMonitor.honorLabels |
honorLabels chooses the metric's labels on collisions with target labels | false |
metrics.serviceMonitor.additionalLabels |
Used to pass Labels that are required by the installed Prometheus Operator | {} |
metrics.serviceMonitor.targetLabels |
Used to keep given service's labels in target | {} |
metrics.serviceMonitor.podTargetLabels |
Used to keep given pod's labels in target | {} |
metrics.serviceMonitor.path |
Define the path used by ServiceMonitor to scrap metrics | "" |
metrics.prometheusRule.enabled |
Set this to true to create prometheusRules for Prometheus operator | false |
metrics.prometheusRule.additionalLabels |
Additional labels that can be used so prometheusRules will be discovered by Prometheus | {} |
metrics.prometheusRule.namespace |
namespace where prometheusRules resource should be created | "" |
metrics.prometheusRule.rules |
List of rules, used as template by Helm. | [] |
Name | Description | Value |
---|---|---|
volumePermissions.enabled |
Enable init container that changes the owner and group of the persistent volume(s) mountpoint to runAsUser:fsGroup |
false |
volumePermissions.image.registry |
Init container volume-permissions image registry | docker.io |
volumePermissions.image.repository |
Init container volume-permissions image repository | bitnami/bitnami-shell |
volumePermissions.image.tag |
Init container volume-permissions image tag | 10-debian-10-r326 |
volumePermissions.image.pullPolicy |
Init container volume-permissions image pull policy | IfNotPresent |
volumePermissions.image.pullSecrets |
Specify docker-registry secret names as an array | [] |
volumePermissions.resources.limits |
Init container volume-permissions resource limits | {} |
volumePermissions.resources.requests |
Init container volume-permissions resource requests | {} |
The above parameters map to the env variables defined in bitnami/rabbitmq. For more information please refer to the bitnami/rabbitmq image documentation.
Specify each parameter using the --set key=value[,key=value]
argument to helm install
. For example,
$ helm install my-release \
--set auth.username=admin,auth.password=secretpassword,auth.erlangCookie=secretcookie \
bitnami/rabbitmq
The above command sets the RabbitMQ admin username and password to admin
and secretpassword
respectively. Additionally the secure erlang cookie is set to secretcookie
.
NOTE: Once this chart is deployed, it is not possible to change the application's access credentials, such as usernames or passwords, using Helm. To change these application credentials after deployment, delete any persistent volumes (PVs) used by the chart and re-deploy it, or use the application's built-in administrative tools if available.
Alternatively, a YAML file that specifies the values for the parameters can be provided while installing the chart. For example,
$ helm install my-release -f values.yaml bitnami/rabbitmq
Tip: You can use the default values.yaml
It is strongly recommended to use immutable tags in a production environment. This ensures your deployment does not change automatically if the same tag is updated with a different image.
Bitnami will release a new chart updating its containers if a new version of the main container, significant changes, or critical vulnerabilities exist.
This chart allows you to set your custom affinity using the affinity
parameter. Find more information about Pod's affinity in the kubernetes documentation.
As an alternative, you can use of the preset configurations for pod affinity, pod anti-affinity, and node affinity available at the bitnami/common chart. To do so, set the podAffinityPreset
, podAntiAffinityPreset
, or nodeAffinityPreset
parameters.
To horizontally scale this chart once it has been deployed, two options are available:
- Use the
kubectl scale
command. - Upgrade the chart modifying the
replicaCount
parameter.
NOTE: It is mandatory to specify the password and Erlang cookie that was set the first time the chart was installed when upgrading the chart.
When scaling down the solution, unnecessary RabbitMQ nodes are automatically stopped, but they are not removed from the cluster. You need to manually remove them by running the rabbitmqctl forget_cluster_node
command.
Refer to the chart documentation for more information on scaling the Rabbit cluster horizontally.
To enable TLS support, first generate the certificates as described in the RabbitMQ documentation for SSL certificate generation.
Once the certificates are generated, you have two alternatives:
- Create a secret with the certificates and associate the secret when deploying the chart
- Include the certificates in the values.yaml file when deploying the chart
Set the auth.tls.failIfNoPeerCert parameter to false to allow a TLS connection if the client fails to provide a certificate.
Set the auth.tls.sslOptionsVerify to verify_peer to force a node to perform peer verification. When set to verify_none, peer verification will be disabled and certificate exchange won't be performed.
Refer to the chart documentation for more information and examples of enabling TLS and using Let's Encrypt certificates.
It is possible to load a RabbitMQ definitions file to configure RabbitMQ.
Because definitions may contain RabbitMQ credentials, store the JSON as a Kubernetes secret. Within the secret's data, choose a key name that corresponds with the desired load definitions filename (i.e. load_definition.json
) and use the JSON object as the value.
Next, specify the load_definitions
property as an extraConfiguration
pointing to the load definition file path within the container (i.e. /app/load_definition.json
) and set loadDefinition.enable
to true
. Any load definitions specified will be available within in the container at /app
.
NOTE: Loading a definition will take precedence over any configuration done through Helm values.
If needed, you can use extraSecrets
to let the chart create the secret for you. This way, you don't need to manually create it before deploying a release. These secrets can also be templated to use supplied chart values.
Refer to the chart documentation for more information and configuration examples of loading custom definitions.
LDAP support can be enabled in the chart by specifying the ldap.*
parameters while creating a release. Refer to the chart documentation for more information and a configuration example.
It is possible to configure a memory high watermark on RabbitMQ to define memory thresholds using the memoryHighWatermark.*
parameters. To do so, you have two alternatives:
- Set an absolute limit of RAM to be used on each RabbitMQ node, as shown in the configuration example below:
memoryHighWatermark.enabled="true"
memoryHighWatermark.type="absolute"
memoryHighWatermark.value="512MB"
- Set a relative limit of RAM to be used on each RabbitMQ node. To enable this feature, define the memory limits at pod level too. An example configuration is shown below:
memoryHighWatermark.enabled="true"
memoryHighWatermark.type="relative"
memoryHighWatermark.value="0.4"
resources.limits.memory="2Gi"
In case you want to add extra environment variables (useful for advanced operations like custom init scripts), you can use the extraEnvVars
property.
extraEnvVars:
- name: LOG_LEVEL
value: error
Alternatively, you can use a ConfigMap or a Secret with the environment variables. To do so, use the .extraEnvVarsCM
or the extraEnvVarsSecret
properties.
The Bitnami Docker RabbitMQ image ships a set of plugins by default. 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, the communityPlugins
parameter can be used to specify a list of URLs (separated by spaces) for custom plugins for RabbitMQ.
Refer to the chart documentation for more information on using RabbitMQ plugins.
IMPORTANT: Some of these procedures can lead to data loss. Always make a backup beforehand.
The RabbitMQ cluster is able to support multiple node failures but, in a situation in which all the nodes are brought down at the same time, the cluster might not be able to self-recover.
This happens if the pod management policy of the statefulset is not Parallel
and the last pod to be running wasn't the first pod of the statefulset. If that happens, update the pod management policy to recover a healthy state:
$ kubectl delete statefulset STATEFULSET_NAME --cascade=false
$ helm upgrade RELEASE_NAME bitnami/rabbitmq \
--set podManagementPolicy=Parallel \
--set replicaCount=NUMBER_OF_REPLICAS \
--set auth.password=PASSWORD \
--set auth.erlangCookie=ERLANG_COOKIE
For a faster resyncronization of the nodes, you can temporarily disable the readiness probe by setting readinessProbe.enabled=false
. Bear in mind that the pods will be exposed before they are actually ready to process requests.
If the steps above don't bring the cluster to a healthy state, it could be possible that none of the RabbitMQ nodes think they were the last node to be up during the shutdown. In those cases, you can force the boot of the nodes by specifying the clustering.forceBoot=true
parameter (which will execute rabbitmqctl force_boot
in each pod):
$ helm upgrade RELEASE_NAME bitnami/rabbitmq \
--set podManagementPolicy=Parallel \
--set clustering.forceBoot=true \
--set replicaCount=NUMBER_OF_REPLICAS \
--set auth.password=PASSWORD \
--set auth.erlangCookie=ERLANG_COOKIE
More information: Clustering Guide: Restarting.
- Changing the password through RabbitMQ's UI can make the pod fail due to the default liveness probes. If you do so, remember to make the chart aware of the new password. Updating the default secret with the password you set through RabbitMQ's UI will automatically recreate the pods. If you are using your own secret, you may have to manually recreate the pods.
The Bitnami RabbitMQ image stores the RabbitMQ data and configurations at the /opt/bitnami/rabbitmq/var/lib/rabbitmq/
path of the container.
The chart mounts a Persistent Volume at this location. By default, the volume is created using dynamic volume provisioning. An existing PersistentVolumeClaim can also be defined.
- Create the PersistentVolume
- Create the PersistentVolumeClaim
- Install the chart
$ helm install my-release --set persistence.existingClaim=PVC_NAME bitnami/rabbitmq
As the image runs as non-root by default, it is necessary to adjust the ownership of the persistent volume so that the container can write data into it.
By default, the chart is configured to use Kubernetes Security Context to automatically change the ownership of the volume. However, this feature does not work in all Kubernetes distributions.
As an alternative, this chart supports using an initContainer
to change the ownership of the volume before mounting it in the final destination.
You can enable this initContainer
by setting volumePermissions.enabled
to true
.
If you want to create default user/vhost and set the default permission. you can use extraConfiguration
:
auth:
username: default-user
extraConfiguration: |-
default_vhost = default-vhost
default_permissions.configure = .*
default_permissions.read = .*
default_permissions.write = .*
Find more information about how to deal with common errors related to Bitnami's Helm charts in this troubleshooting guide.
It's necessary to set the auth.password
and auth.erlangCookie
parameters when upgrading for readiness/liveness probes to work properly. When you install this chart for the first time, some notes will be displayed providing the credentials you must use under the 'Credentials' section. Please note down the password and the cookie, and run the command below to upgrade your chart:
$ helm upgrade my-release bitnami/rabbitmq --set auth.password=[PASSWORD] --set auth.erlangCookie=[RABBITMQ_ERLANG_COOKIE]
| Note: you need to substitute the placeholders [PASSWORD] and [RABBITMQ_ERLANG_COOKIE] with the values obtained in the installation notes.
This new version of the chart bumps the RabbitMQ version to 3.9.1
. It is considered a minor release, and no breaking changes are expected. Additionally, RabbitMQ 3.9.X
nodes can run alongside 3.8.X
nodes.
See the Upgrading guide and the RabbitMQ change log for further documentation.
On November 13, 2020, Helm v2 support was formally finished, this major version is the result of the required changes applied to the Helm Chart to be able to incorporate the different features added in Helm v3 and to be consistent with the Helm project itself regarding the Helm v2 EOL.
Learn more about this change and related upgrade considerations.
- Several parameters were renamed or disappeared in favor of new ones on this major version:
replicas
is renamed toreplicaCount
.securityContext.*
is deprecated in favor ofpodSecurityContext
andcontainerSecurityContext
.- Authentication parameters were reorganized under the
auth.*
parameter:rabbitmq.username
,rabbitmq.password
, andrabbitmq.erlangCookie
are nowauth.username
,auth.password
, andauth.erlangCookie
respectively.rabbitmq.tls.*
parameters are now underauth.tls.*
.
- Parameters prefixed with
rabbitmq.
were renamed removing the prefix. E.g.rabbitmq.configuration
-> renamed toconfiguration
. rabbitmq.rabbitmqClusterNodeName
is deprecated.rabbitmq.setUlimitNofiles
is deprecated.forceBoot.enabled
is renamed toclustering.forceBoot
.loadDefinition.secretName
is renamed toloadDefinition.existingSecret
.metics.port
is remamed toservice.metricsPort
.service.extraContainerPorts
is renamed toextraContainerPorts
.service.nodeTlsPort
is renamed toservice.tlsNodePort
.podDisruptionBudget
is deprecated in favor ofpdb.create
,pdb.minAvailable
, andpdb.maxUnavailable
.rbacEnabled
-> deprecated in favor ofrbac.create
.- New parameters:
serviceAccount.create
, andserviceAccount.name
. - New parameters:
memoryHighWatermark.enabled
,memoryHighWatermark.type
, andmemoryHighWatermark.value
.
- Chart labels and Ingress configuration were adapted to follow the Helm charts best practices.
- Initialization logic now relies on the container.
- This version introduces
bitnami/common
, a library chart as a dependency. More documentation about this new utility could be found here. Please, make sure that you have updated the chart dependencies before executing any upgrade.
Consequences:
- Backwards compatibility is not guaranteed.
- Compatibility with non Bitnami images is not guaranteed anymore.
This new version updates the RabbitMQ image to a new version based on bash instead of node.js. However, since this Chart overwrites the container's command, the changes to the container shouldn't affect the Chart. To upgrade, it may be needed to enable the fastBoot
option, as it is already the case from upgrading from 5.X to 5.Y.
This major release changes the clustering method from ip
to hostname
.
This change is needed to fix the persistence. The data dir will now depend on the hostname which is stable instead of the pod IP that might change.
IMPORTANT: Note that if you upgrade from a previous version you will lose your data.
Backwards compatibility is not guaranteed unless you modify the labels used on the chart's deployments. Use the workaround below to upgrade from versions previous to 3.0.0. The following example assumes that the release name is rabbitmq:
$ kubectl delete statefulset rabbitmq --cascade=false
Bitnami Kubernetes documentation is available at https://docs.bitnami.com/. You can find there the following resources:
- Documentation for RabbitMQ Helm chart
- Get Started with Kubernetes guides
- Bitnami Helm charts documentation
- Kubernetes FAQs
- Kubernetes Developer guides
Copyright © 2022 Bitnami
Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License.