mirror of
https://github.com/projectcapsule/capsule.git
synced 2026-08-23 22:46:59 +00:00
* fix: revert pv labeling to dircet api reads Signed-off-by: Oliver Baehler <oliver@sudo-i.net> * fix: revert pv labeling to dircet api reads Signed-off-by: Oliver Baehler <oliver@sudo-i.net> * feat: add deprecation warnings Signed-off-by: Oliver Baehler <oliver@sudo-i.net> * chore: implement playground Signed-off-by: Oliver Baehler <oliver@sudo-i.net> * chore: implement playground Signed-off-by: Oliver Baehler <oliver@sudo-i.net> --------- Signed-off-by: Oliver Baehler <oliver@sudo-i.net>
24 lines
828 B
Bash
24 lines
828 B
Bash
# Hostnames used by the browser and ingress resources.
|
|
CLUSTER_NAME=capsule
|
|
PROXY_PORT=9001
|
|
DEX_HOST=dex.capsule.local
|
|
HEADLAMP_HOST=headlamp.capsule.local
|
|
PROXY_HOST=proxy.capsule.local
|
|
GANGPLANK_HOST=gangplank.capsule.local
|
|
|
|
# Public URLs advertised to OIDC clients. Override these independently when
|
|
# using HTTPS or a different local DNS setup.
|
|
DEX_URL=https://dex.capsule.local
|
|
HEADLAMP_URL=https://headlamp.capsule.local
|
|
PROXY_URL=https://proxy.capsule.local:9001
|
|
GANGPLANK_URL=http://gangplank.capsule.local
|
|
|
|
# The API server validates Dex tokens with these claim mappings. The `name`
|
|
# claim matches the alice/bob/gatsby tenant owners in the sample resources.
|
|
OIDC_CLIENT_ID=kubernetes
|
|
OIDC_CLIENT_SECRET=kubernetes-secret
|
|
OIDC_USERNAME_CLAIM=name
|
|
OIDC_USERNAME_PREFIX=
|
|
OIDC_GROUPS_CLAIM=groups
|
|
OIDC_GROUPS_PREFIX=oidc:
|