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.
11 lines
472 B
11 lines
472 B
apiVersion: v1
|
|
kind: Secret
|
|
metadata:
|
|
name: {{ include "call-nested" (list . "prosody" "prosody.fullname") }}-jicofo
|
|
labels:
|
|
{{- include "jitsi-meet.jicofo.labels" . | nindent 4 }}
|
|
type: Opaque
|
|
data:
|
|
JICOFO_AUTH_USER: '{{ .Values.jicofo.xmpp.user | b64enc }}'
|
|
JICOFO_AUTH_PASSWORD: '{{ default (randAlphaNum 10) .Values.jicofo.xmpp.password | b64enc }}'
|
|
JICOFO_COMPONENT_SECRET: '{{ default (randAlphaNum 10) .Values.jicofo.xmpp.componentSecret | b64enc }}'
|
|
|