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
28 lines
1.0 KiB
YAML
28 lines
1.0 KiB
YAML
# Patch: Ory redirect URIs → sslip.io hostnames for local dev.
|
|
# Applied as a strategic merge patch over the rendered Kratos/Hydra ConfigMaps.
|
|
#
|
|
# DOMAIN_SUFFIX is substituted by local-up.sh at deploy time.
|
|
# Production overlay uses sunbeam.pt.
|
|
|
|
# Kratos selfservice URLs
|
|
apiVersion: v1
|
|
kind: ConfigMap
|
|
metadata:
|
|
name: kratos-config
|
|
namespace: ory
|
|
data:
|
|
selfservice.default_browser_return_url: "https://auth.DOMAIN_SUFFIX/"
|
|
selfservice.flows.login.ui_url: "https://auth.DOMAIN_SUFFIX/login"
|
|
selfservice.flows.registration.ui_url: "https://auth.DOMAIN_SUFFIX/registration"
|
|
selfservice.flows.recovery.ui_url: "https://auth.DOMAIN_SUFFIX/recovery"
|
|
selfservice.flows.settings.ui_url: "https://auth.DOMAIN_SUFFIX/settings"
|
|
selfservice.allowed_return_urls: |
|
|
- https://auth.DOMAIN_SUFFIX/
|
|
- https://docs.DOMAIN_SUFFIX/
|
|
- https://meet.DOMAIN_SUFFIX/
|
|
- https://drive.DOMAIN_SUFFIX/
|
|
- https://mail.DOMAIN_SUFFIX/
|
|
- https://chat.DOMAIN_SUFFIX/
|
|
- https://people.DOMAIN_SUFFIX/
|
|
- https://src.DOMAIN_SUFFIX/
|