[bitnami/rabbitmq] add extraDeploy support (#6926) (#6978)

Co-authored-by: Olivier Boudet <olivier.boudet@cooperl.com>
This commit is contained in:
OlivierB
2021-07-16 15:08:38 +02:00
committed by GitHub
parent 7f5b0ed194
commit d3da8aab1d
4 changed files with 10 additions and 1 deletions

View File

@@ -23,4 +23,4 @@ name: rabbitmq
sources:
- https://github.com/bitnami/bitnami-docker-rabbitmq
- https://www.rabbitmq.com
version: 8.17.0
version: 8.18.0

View File

@@ -251,6 +251,7 @@ The following table lists the configurable parameters of the RabbitMQ chart and
| `clusterDomain` | Default Kubernetes cluster domain | `cluster.local` |
| `kubeVersion` | Force target Kubernetes version (using Helm capabilities if not set) | `nil` |
| `commonAnnotations` | Annotations to add to all deployed objects | `{}` (evaluated as a template) |
| `extraDeploy` | Array of extra objects to deploy with the release | `[]` |
### RabbitMQ parameters

View File

@@ -0,0 +1,4 @@
{{- range .Values.extraDeploy }}
---
{{ include "common.tplvalues.render" (dict "value" . "context" $) }}
{{- end }}

View File

@@ -64,6 +64,10 @@ kubeVersion:
##
clusterDomain: cluster.local
## @param extraDeploy Array of extra objects to deploy with the release
##
extraDeploy: []
## @param hostAliases Deployment pod host aliases
## https://kubernetes.io/docs/concepts/services-networking/add-entries-to-pod-etc-hosts-with-host-aliases/
##