38 lines
996 B
YAML
38 lines
996 B
YAML
|
|
# Base LiveKit Helm values (chart: livekit/livekit-server).
|
||
|
|
# DOMAIN_SUFFIX is replaced by overlay patches.
|
||
|
|
# API keys/secrets come from the livekit-keys Secret (loaded via extraEnv or config file).
|
||
|
|
# Reference: https://github.com/livekit/livekit-helm/blob/master/server-sample.yaml
|
||
|
|
|
||
|
|
livekit:
|
||
|
|
# LiveKit server config injected as config.yaml
|
||
|
|
port: 7880
|
||
|
|
log_level: info
|
||
|
|
|
||
|
|
rtc:
|
||
|
|
port_range_start: 49152
|
||
|
|
port_range_end: 49252
|
||
|
|
use_external_ip: true
|
||
|
|
|
||
|
|
turn:
|
||
|
|
enabled: true
|
||
|
|
domain: meet.DOMAIN_SUFFIX
|
||
|
|
tls_port: 5349
|
||
|
|
udp_port: 3478
|
||
|
|
external_tls: true
|
||
|
|
|
||
|
|
redis:
|
||
|
|
# Valkey is protocol-compatible with Redis; LiveKit sees this as a Redis endpoint
|
||
|
|
address: valkey.data.svc.cluster.local:6379
|
||
|
|
|
||
|
|
# API keys are loaded from a Kubernetes Secret and mounted as env vars.
|
||
|
|
# keys:
|
||
|
|
# <key>: <secret> # set in overlay Secret, not here
|
||
|
|
|
||
|
|
deployment:
|
||
|
|
resources:
|
||
|
|
limits:
|
||
|
|
memory: 128Mi
|
||
|
|
requests:
|
||
|
|
memory: 64Mi
|
||
|
|
cpu: 100m
|