2026-02-28 13:42:27 +00:00
|
|
|
# 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
|
|
|
|
|
|
feat: bring up local dev stack — all services running
- Ory Hydra + Kratos: fixed secret management, DSN config, DB migrations,
OAuth2Client CRD (helm template skips crds/ dir), login-ui env vars
- SeaweedFS: added s3.json credentials file via -s3.config CLI flag
- OpenBao: standalone mode with auto-unseal sidecar, keys in K8s secret
- OpenSearch: increased memory to 1.5Gi / JVM 1g heap
- Gitea: SSL_MODE disable, S3 bucket creation fixed
- Hive: automountServiceAccountToken: false (Lima virtiofs read-only rootfs quirk)
- LiveKit: API keys in values, hostPort conflict resolved
- Linkerd: native sidecar (proxy.nativeSidecar=true) to avoid blocking Jobs
- All placeholder images replaced: pingora→nginx:alpine, login-ui→oryd/kratos-selfservice-ui-node
Full stack running: postgres, valkey, openbao, opensearch, seaweedfs,
kratos, hydra, gitea, livekit, hive (placeholder), login-ui
2026-02-28 22:08:38 +00:00
|
|
|
# API keys — overridden per-environment via secrets.
|
|
|
|
|
# At least one key must be present for the server to start.
|
|
|
|
|
keys:
|
|
|
|
|
devkey: secret-placeholder
|
2026-02-28 13:42:27 +00:00
|
|
|
|
|
|
|
|
deployment:
|
|
|
|
|
resources:
|
|
|
|
|
limits:
|
|
|
|
|
memory: 128Mi
|
|
|
|
|
requests:
|
|
|
|
|
memory: 64Mi
|
|
|
|
|
cpu: 100m
|
2026-03-02 18:33:42 +00:00
|
|
|
|
|
|
|
|
# Recreate strategy: hostPorts (TURN UDP relay range) block RollingUpdate —
|
|
|
|
|
# the new pod cannot schedule while the old one still holds the host ports.
|
|
|
|
|
deploymentStrategy:
|
|
|
|
|
type: Recreate
|