You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
14 lines
573 B
14 lines
573 B
{{- if .Values.jibri.enabled }}
|
|
apiVersion: v1
|
|
kind: Secret
|
|
metadata:
|
|
name: {{ include "call-nested" (list . "prosody" "prosody.fullname") }}-jibri
|
|
labels:
|
|
{{- include "jitsi-meet.jibri.labels" . | nindent 4 }}
|
|
type: Opaque
|
|
data:
|
|
JIBRI_XMPP_USER: '{{ .Values.jibri.xmpp.user | b64enc }}'
|
|
JIBRI_XMPP_PASSWORD: '{{ default (randAlphaNum 10) .Values.jibri.xmpp.password | b64enc }}'
|
|
JIBRI_RECORDER_USER: '{{ .Values.jibri.recorder.user | b64enc }}'
|
|
JIBRI_RECORDER_PASSWORD: '{{ default (randAlphaNum 10) .Values.jibri.recorder.password | b64enc }}'
|
|
{{- end }}
|
|
|