[bitnami/rabbitmq] add PVC labels (#15352)

Signed-off-by: Alexander Alexandrov <alex.mirenki@gmail.com>
This commit is contained in:
Alexander Alexandrov
2023-03-07 12:46:23 +03:00
committed by GitHub
parent 6e9fca4fd6
commit bd0fbf7b4d
4 changed files with 12 additions and 2 deletions

View File

@@ -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

View File

@@ -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

View File

@@ -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 }}

View File

@@ -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
##