mirror of
https://github.com/bitnami/charts.git
synced 2026-03-14 06:47:28 +08:00
Synchronize upstreamed folder to 09ecdc83d
This commit is contained in:
@@ -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:
|
||||
|
||||
@@ -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` |
|
||||
|
||||
@@ -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:
|
||||
|
||||
@@ -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
|
||||
|
||||
|
||||
@@ -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
|
||||
|
||||
|
||||
Reference in New Issue
Block a user