mirror of
https://github.com/ZwareBear/JFrog-Cloud-Installers.git
synced 2026-01-21 15:06:57 -06:00
13 lines
480 B
YAML
13 lines
480 B
YAML
{{- if and (not .Values.rabbitmq.rabbitmq.existingErlangSecret) (not .Values.rabbitmq.rabbitmq.existingPasswordSecret) }}
|
|
apiVersion: v1
|
|
kind: Secret
|
|
metadata:
|
|
name: {{ include "pipelines.fullname" . }}-rabbitmq-secret
|
|
labels:
|
|
{{- include "pipelines.labels" . | nindent 4 }}
|
|
type: Opaque
|
|
data:
|
|
rabbitmq-erlang-cookie: {{ .Values.rabbitmq.rabbitmq.erlangCookie | b64enc | quote }}
|
|
rabbitmq-password: {{ .Values.rabbitmq.rabbitmq.password | b64enc | quote }}
|
|
{{- end }}
|