mirror of
https://github.com/bitnami/charts.git
synced 2026-03-12 06:47:32 +08:00
[bitnami/rabbitmq] add PVC labels (#15352)
Signed-off-by: Alexander Alexandrov <alex.mirenki@gmail.com>
This commit is contained in:
committed by
GitHub
parent
6e9fca4fd6
commit
bd0fbf7b4d
@@ -23,4 +23,4 @@ name: rabbitmq
|
||||
sources:
|
||||
- https://github.com/bitnami/containers/tree/main/bitnami/rabbitmq
|
||||
- https://www.rabbitmq.com
|
||||
version: 11.10.2
|
||||
version: 11.10.3
|
||||
|
||||
@@ -263,6 +263,7 @@ The command removes all the Kubernetes components associated with the chart and
|
||||
| `persistence.subPath` | The subdirectory of the volume to mount to | `""` |
|
||||
| `persistence.size` | PVC Storage Request for RabbitMQ data volume | `8Gi` |
|
||||
| `persistence.annotations` | Persistence annotations. Evaluated as a template | `{}` |
|
||||
| `persistence.labels` | Persistence labels. Evaluated as a template | `{}` |
|
||||
|
||||
### Exposure parameters
|
||||
|
||||
|
||||
@@ -424,7 +424,11 @@ spec:
|
||||
volumeClaimTemplates:
|
||||
- metadata:
|
||||
name: data
|
||||
labels: {{- include "common.labels.matchLabels" . | nindent 10 }}
|
||||
labels:
|
||||
{{- include "common.labels.matchLabels" . | nindent 10 }}
|
||||
{{- if .Values.persistence.labels }}
|
||||
{{- include "common.tplvalues.render" ( dict "value" .Values.persistence.labels "context" $) | nindent 10 }}
|
||||
{{- end }}
|
||||
{{- if .Values.persistence.annotations }}
|
||||
annotations:
|
||||
{{- include "common.tplvalues.render" ( dict "value" .Values.persistence.annotations "context" $) | nindent 10 }}
|
||||
|
||||
@@ -934,6 +934,11 @@ persistence:
|
||||
## example.io/disk-volume-type: SSD
|
||||
##
|
||||
annotations: {}
|
||||
## @param persistence.labels Persistence labels. Evaluated as a template
|
||||
## Example:
|
||||
## labels:
|
||||
## app: my-app
|
||||
labels: {}
|
||||
|
||||
## @section Exposure parameters
|
||||
##
|
||||
|
||||
Reference in New Issue
Block a user