helm-charts/element-call/templates/lk-jwt/secret.yaml

15 lines
351 B
YAML
Raw Permalink Normal View History

{{- if .Values.service.lkJWT.enabled }}
2024-07-23 13:57:31 +02:00
---
apiVersion: v1
kind: Secret
metadata:
name: {{ include "element-call.fullname" . }}-lk-jwt
labels:
{{- include "element-call.labels" . | nindent 4 }}
data:
{{- with .Values.service.lkJWT.config }}
LIVEKIT_KEY: {{ .key | b64enc }}
LIVEKIT_SECRET: {{ .secret | b64enc }}
{{- end }}
{{- end }}