mirror of
https://github.com/helm/charts.git
synced 2026-08-23 22:37:45 +00:00
* [stable/rabbitmq] fix Error: enoent with forceBoot on new install (see #13485) Signed-off-by: Denis Kalgushkin <keygenmusic@gmail.com> * [stable/rabbitmq] Bump chart version for PR 14491 (see #13485) Signed-off-by: Denis Kalgushkin <keygenmusic@gmail.com>
This commit is contained in:
committed by
Kubernetes Prow Robot
parent
abb1fde865
commit
c8ac517c47
@@ -1,6 +1,6 @@
|
||||
apiVersion: v1
|
||||
name: rabbitmq
|
||||
version: 5.9.1
|
||||
version: 5.9.2
|
||||
appVersion: 3.7.15
|
||||
description: Open source message broker software that implements the Advanced Message Queuing Protocol (AMQP)
|
||||
keywords:
|
||||
|
||||
@@ -128,7 +128,7 @@ The following table lists the configurable parameters of the RabbitMQ chart and
|
||||
| `volumePermissions.image.tag` | Init container volume-permissions image tag | `latest` |
|
||||
| `volumePermissions.image.pullPolicy` | Init container volume-permissions image pull policy | `IfNotPresent` |
|
||||
| `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` |
|
||||
| `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` |
|
||||
|
||||
The above parameters map to the env variables defined in [bitnami/rabbitmq](http://github.com/bitnami/bitnami-docker-rabbitmq). For more information please refer to the [bitnami/rabbitmq](http://github.com/bitnami/bitnami-docker-rabbitmq) image documentation.
|
||||
|
||||
|
||||
@@ -106,7 +106,7 @@ spec:
|
||||
EOF
|
||||
chmod a+x /opt/bitnami/rabbitmq/sbin/rabbitmq-api-check
|
||||
{{- if and .Values.persistence.enabled .Values.forceBoot.enabled }}
|
||||
rabbitmqctl force_boot
|
||||
if [ -d "{{ .Values.persistence.path }}/mnesia/${RABBITMQ_NODENAME}" ]; then rabbitmqctl force_boot; fi
|
||||
{{- end }}
|
||||
exec rabbitmq-server
|
||||
{{- if .Values.resources }}
|
||||
|
||||
Reference in New Issue
Block a user