Kustomize base + overlays for the full Sunbeam k3s stack: - base/mesh — Linkerd edge (crds + control-plane + viz) - base/ingress — custom Pingora edge proxy - base/ory — Kratos 0.60.1 + Hydra 0.60.1 + login-ui - base/data — CloudNativePG 0.27.1, Valkey 8, OpenSearch 2 - base/storage — SeaweedFS master + volume + filer (S3 on :8333) - base/lasuite — Hive sync daemon + La Suite app placeholders - base/media — LiveKit livekit-server 1.9.0 - base/devtools — Gitea 12.5.0 (external PG + Valkey) overlays/local — sslip.io domain, mkcert TLS, Lima hostPort overlays/production — stub (TODOs for sunbeam.pt values) scripts/ — local-up/down/certs/urls helpers justfile — up / down / certs / urls targets
31 lines
944 B
YAML
31 lines
944 B
YAML
# Patch: local Pingora overrides
|
|
# - Disables rustls-acme (ACME negotiation not needed locally)
|
|
# - Mounts mkcert wildcard cert from the pingora-tls Secret
|
|
# - Exposes TURN relay range as hostPort on the Lima VM
|
|
|
|
apiVersion: apps/v1
|
|
kind: Deployment
|
|
metadata:
|
|
name: pingora
|
|
namespace: ingress
|
|
spec:
|
|
template:
|
|
spec:
|
|
containers:
|
|
- name: pingora
|
|
env:
|
|
- name: ACME_ENABLED
|
|
value: "false"
|
|
ports:
|
|
# Expose full TURN relay range as hostPort so the Lima VM forwards UDP
|
|
- name: turn-relay-start
|
|
containerPort: 49152
|
|
hostPort: 49152
|
|
protocol: UDP
|
|
- name: turn-relay-end
|
|
containerPort: 49252
|
|
hostPort: 49252
|
|
protocol: UDP
|
|
# TLS cert comes from mkcert Secret created by scripts/local-certs.sh
|
|
# Secret name: pingora-tls, keys: tls.crt / tls.key
|