mirror of
https://github.com/outbackdingo/homelab-v.git
synced 2026-08-25 14:53:19 +00:00
default callback url contains a fragment component in violation OAuth2.0 spec https://github.com/authelia/authelia/discussions/7185#discussioncomment-11613126 https://github.com/netbirdio/dashboard/blob/14d2d688198a633e745f59c2d0bed9de146d2be5/src/utils/config.ts#L26-L27
24 lines
813 B
YAML
24 lines
813 B
YAML
apiVersion: kustomize.config.k8s.io/v1beta1
|
|
kind: Kustomization
|
|
|
|
configMapGenerator:
|
|
- name: dashboard-config
|
|
namespace: netbird
|
|
literals:
|
|
# variables: https://github.com/netbirdio/dashboard/blob/main/config.json
|
|
- AUTH_AUDIENCE="netbird-dashboard"
|
|
- AUTH_AUTHORITY="https://keycloak.stonegarden.dev/realms/homelab"
|
|
- AUTH_REDIRECT_URI="/callback"
|
|
- AUTH_SILENT_REDIRECT_URI="/silent-callback"
|
|
- AUTH_CLIENT_ID="netbird-dashboard"
|
|
- AUTH_SUPPORTED_SCOPES="openid profile email offline_access netbird-api"
|
|
- USE_AUTH0="false"
|
|
- NETBIRD_MGMT_API_ENDPOINT="https://netbird.stonegarden.dev"
|
|
- NETBIRD_MGMT_GRPC_API_ENDPOINT="https://netbird.stonegarden.dev"
|
|
|
|
resources:
|
|
- deployment.yaml
|
|
- svc.yaml
|
|
- x-oidc-client.yaml
|
|
- oidc-scopes.yaml
|