mirror of
https://github.com/bitnami/charts.git
synced 2026-03-14 14:57:22 +08:00
Synchronize upstreamed folder to 09ecdc83d
This commit is contained in:
@@ -1,6 +1,6 @@
|
|||||||
apiVersion: v1
|
apiVersion: v1
|
||||||
name: rabbitmq
|
name: rabbitmq
|
||||||
version: 5.2.0
|
version: 5.3.0
|
||||||
appVersion: 3.7.14
|
appVersion: 3.7.14
|
||||||
description: Open source message broker software that implements the Advanced Message Queuing Protocol (AMQP)
|
description: Open source message broker software that implements the Advanced Message Queuing Protocol (AMQP)
|
||||||
keywords:
|
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` |
|
| `persistence.enabled` | Use a PVC to persist data | `true` |
|
||||||
| `service.annotations` | service annotations as an array | [] |
|
| `service.annotations` | service annotations as an array | [] |
|
||||||
| `persistence.storageClass` | Storage class of backing PVC | `nil` (uses alpha storage class annotation) |
|
| `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.accessMode` | Use volume as ReadOnly or ReadWrite | `ReadWriteOnce` |
|
||||||
| `persistence.size` | Size of data volume | `8Gi` |
|
| `persistence.size` | Size of data volume | `8Gi` |
|
||||||
| `persistence.path` | Mount path of the data volume | `/opt/bitnami/rabbitmq/var/lib/rabbitmq` |
|
| `persistence.path` | Mount path of the data volume | `/opt/bitnami/rabbitmq/var/lib/rabbitmq` |
|
||||||
|
|||||||
@@ -264,6 +264,10 @@ spec:
|
|||||||
{{- if not .Values.persistence.enabled }}
|
{{- if not .Values.persistence.enabled }}
|
||||||
- name: data
|
- name: data
|
||||||
emptyDir: {}
|
emptyDir: {}
|
||||||
|
{{- else if .Values.persistence.existingClaim }}
|
||||||
|
- name: data
|
||||||
|
persistentVolumeClaim:
|
||||||
|
claimName: {{ .Values.persistence.existingClaim }}
|
||||||
{{- else }}
|
{{- else }}
|
||||||
volumeClaimTemplates:
|
volumeClaimTemplates:
|
||||||
- metadata:
|
- metadata:
|
||||||
|
|||||||
@@ -164,6 +164,9 @@ persistence:
|
|||||||
# storageClass: "-"
|
# storageClass: "-"
|
||||||
accessMode: ReadWriteOnce
|
accessMode: ReadWriteOnce
|
||||||
|
|
||||||
|
## Existing PersistentVolumeClaims
|
||||||
|
# existingClaim: ""
|
||||||
|
|
||||||
# If you change this value, you might have to adjust `rabbitmq.diskFreeLimit` as well.
|
# If you change this value, you might have to adjust `rabbitmq.diskFreeLimit` as well.
|
||||||
size: 8Gi
|
size: 8Gi
|
||||||
|
|
||||||
|
|||||||
@@ -165,6 +165,9 @@ persistence:
|
|||||||
# storageClass: "-"
|
# storageClass: "-"
|
||||||
accessMode: ReadWriteOnce
|
accessMode: ReadWriteOnce
|
||||||
|
|
||||||
|
## Existing PersistentVolumeClaims
|
||||||
|
# existingClaim: ""
|
||||||
|
|
||||||
# If you change this value, you might have to adjust `rabbitmq.diskFreeLimit` as well.
|
# If you change this value, you might have to adjust `rabbitmq.diskFreeLimit` as well.
|
||||||
size: 8Gi
|
size: 8Gi
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user