Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion bitnami/rabbitmq/Chart.yaml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
apiVersion: v1
name: rabbitmq
version: 6.18.9
version: 6.19.9
appVersion: 3.8.3
description: Open source message broker software that implements the Advanced Message Queuing Protocol (AMQP)
keywords:
Expand Down
2 changes: 2 additions & 0 deletions bitnami/rabbitmq/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -185,6 +185,8 @@ The following table lists the configurable parameters of the RabbitMQ chart and
| `volumePermissions.resources` | Init container resource requests/limit | `nil` |
| `forceBoot.enabled` | Executes 'rabbitmqctl force_boot' to force boot cluster shut down unexpectedly in an unknown order. Use it only if you prefer availability over integrity. | `false` |
| `extraSecrets` | Optionally specify extra secrets to be created by the chart. | `{}` |
| `extraVolumeMounts` | Optionally specify extra list of additional volumeMounts . | `{}` |
| `extraVolumes` | Optionally specify extra list of additional volumes . | `{}` |

The above parameters map to the env variables defined in [bitnami/rabbitmq](https://github.com/bitnami/bitnami-docker-rabbitmq). For more information please refer to the [bitnami/rabbitmq](https://github.com/bitnami/bitnami-docker-rabbitmq) image documentation.

Expand Down
6 changes: 6 additions & 0 deletions bitnami/rabbitmq/templates/statefulset.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -106,6 +106,9 @@ spec:
{{ toYaml .Values.resources | indent 10 }}
{{- end }}
volumeMounts:
{{- if .Values.extraVolumeMounts }}
{{ toYaml .Values.extraVolumeMounts | indent 10 }}
{{- end }}
- name: config-volume
mountPath: /opt/bitnami/rabbitmq/conf
- name: healthchecks
Expand Down Expand Up @@ -345,6 +348,9 @@ spec:
secret:
secretName: {{ .Values.rabbitmq.loadDefinition.secretName | quote }}
{{- end }}
{{- if .Values.extraVolumes }}
{{ toYaml .Values.extraVolumes | indent 8 }}
{{- end }}
{{- if not .Values.persistence.enabled }}
- name: data
emptyDir: {}
Expand Down
10 changes: 10 additions & 0 deletions bitnami/rabbitmq/values-production.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -572,3 +572,13 @@ extraSecrets: {}
# {
# ...
# }

## Adding optionals volumeMount
extraVolumeMounts: []
# - name: extras
# mountPath: /usr/share/extras
# readOnly: true

extraVolumes: []
# - name: extras
# emptyDir: {}
10 changes: 10 additions & 0 deletions bitnami/rabbitmq/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -553,3 +553,13 @@ extraSecrets: {}
# {
# ...
# }

## Adding optionals volumeMount
extraVolumeMounts: []
# - name: extras
# mountPath: /usr/share/extras
# readOnly: true

extraVolumes: []
# - name: extras
# emptyDir: {}