Synchronize upstreamed folder to 09ecdc83d

This commit is contained in:
bitnami-bot
2019-04-16 06:37:39 +00:00
parent 25533c6907
commit 6476465b0c
5 changed files with 12 additions and 1 deletions

View File

@@ -1,6 +1,6 @@
apiVersion: v1
name: rabbitmq
version: 5.2.0
version: 5.3.0
appVersion: 3.7.14
description: Open source message broker software that implements the Advanced Message Queuing Protocol (AMQP)
keywords:

View File

@@ -79,6 +79,7 @@ The following table lists the configurable parameters of the RabbitMQ chart and
| `persistence.enabled` | Use a PVC to persist data | `true` |
| `service.annotations` | service annotations as an array | [] |
| `persistence.storageClass` | Storage class of backing PVC | `nil` (uses alpha storage class annotation) |
| `persistence.existingClaim` | RabbitMQ data Persistent Volume existing claim name | "" |
| `persistence.accessMode` | Use volume as ReadOnly or ReadWrite | `ReadWriteOnce` |
| `persistence.size` | Size of data volume | `8Gi` |
| `persistence.path` | Mount path of the data volume | `/opt/bitnami/rabbitmq/var/lib/rabbitmq` |

View File

@@ -264,6 +264,10 @@ spec:
{{- if not .Values.persistence.enabled }}
- name: data
emptyDir: {}
{{- else if .Values.persistence.existingClaim }}
- name: data
persistentVolumeClaim:
claimName: {{ .Values.persistence.existingClaim }}
{{- else }}
volumeClaimTemplates:
- metadata:

View File

@@ -164,6 +164,9 @@ persistence:
# storageClass: "-"
accessMode: ReadWriteOnce
## Existing PersistentVolumeClaims
# existingClaim: ""
# If you change this value, you might have to adjust `rabbitmq.diskFreeLimit` as well.
size: 8Gi

View File

@@ -165,6 +165,9 @@ persistence:
# storageClass: "-"
accessMode: ReadWriteOnce
## Existing PersistentVolumeClaims
# existingClaim: ""
# If you change this value, you might have to adjust `rabbitmq.diskFreeLimit` as well.
size: 8Gi