mirror of
https://github.com/wahyd4/charts.git
synced 2026-08-23 03:56:24 +10:00
@@ -1,6 +1,6 @@
|
||||
apiVersion: v1
|
||||
name: rabbitmq
|
||||
version: 7.6.1
|
||||
version: 7.6.2
|
||||
appVersion: 3.8.6
|
||||
description: Open source message broker software that implements the Advanced Message Queuing Protocol (AMQP)
|
||||
keywords:
|
||||
|
||||
@@ -73,7 +73,7 @@ The following table lists the configurable parameters of the RabbitMQ chart and
|
||||
| `image.debug` | Set to true if you would like to see extra information on logs | `false` |
|
||||
| `auth.username` | RabbitMQ application username | `user` |
|
||||
| `auth.password` | RabbitMQ application password | _random 10 character long alphanumeric string_ |
|
||||
| `auth.existingPasswordSecret` | Existing secret with RabbitMQ credentials | `nil` |
|
||||
| `auth.existingPasswordSecret` | Existing secret with RabbitMQ credentials | `nil` (evaluated as a template) |
|
||||
| `auth.erlangCookie` | Erlang cookie | _random 32 character long alphanumeric string_ |
|
||||
| `auth.existingErlangSecret` | Existing secret with RabbitMQ Erlang cookie | `nil` |
|
||||
| `auth.tls.enabled` | Enable TLS support on RabbitMQ | `false` |
|
||||
|
||||
@@ -64,7 +64,7 @@ Get the password secret.
|
||||
*/}}
|
||||
{{- define "rabbitmq.secretPasswordName" -}}
|
||||
{{- if .Values.auth.existingPasswordSecret -}}
|
||||
{{- printf "%s" .Values.auth.existingPasswordSecret -}}
|
||||
{{- printf "%s" (tpl .Values.auth.existingPasswordSecret $) -}}
|
||||
{{- else -}}
|
||||
{{- printf "%s" (include "rabbitmq.fullname" .) -}}
|
||||
{{- end -}}
|
||||
|
||||
Reference in New Issue
Block a user