Two ArgoCD apps from the same forte-drop image:
- forte-drop (web): admin + public drops, sidecar in oidc mode,
ingress drop-k8s.hackathon.forteapps.net.
- forte-drop-mcp (mcp): MCP-over-HTTP, sidecar in mcp mode,
ingress mcp.drop-k8s.hackathon.forteapps.net.
Plus two labeled Keycloak client config Secrets — the registrar
creates the OIDC clients in the forte realm within ~2 min.
Sealed secrets (forte-drop-secrets + auth-oidc) added in a
follow-up commit by the maintainer:
cd /Users/sten/dev/work/forte_k8/launchpad
kubeseal --format=yaml \
--controller-name=sealed-secrets-controller \
--controller-namespace=kube-system \
< private/forte-drop-secrets.yaml \
> apps/base/forte-drop/forte-drop-secrets-sealed.yaml
# auth-oidc: wait for registrar, copy client-secret into private/,
# then seal as apps/base/forte-drop/auth-oidc-sealed.yaml.
# (mcp deployment is sidecar type=mcp — no auth-oidc Secret needed;
# only the web deployment requires it.)
29 lines
1.1 KiB
YAML
29 lines
1.1 KiB
YAML
# Labeled config Secret read by the Keycloak Client Registrar. The registrar will
|
|
# create the OIDC client in the forte realm and write the resulting credentials
|
|
# back into forte-drop-oidc-credentials Secret in this namespace within ~2 min.
|
|
# That client-secret then gets manually copied into the auth-oidc SealedSecret
|
|
# (one-time per cluster; see PR description).
|
|
apiVersion: v1
|
|
kind: Secret
|
|
metadata:
|
|
name: keycloak-client-forte-drop
|
|
namespace: forte-drop
|
|
labels:
|
|
keycloak.forteapps.net/client-config: "true"
|
|
stringData:
|
|
client.json: |
|
|
{
|
|
"clientId": "forte-drop",
|
|
"name": "Forte Drop (web)",
|
|
"enabled": true,
|
|
"protocol": "openid-connect",
|
|
"clientAuthenticatorType": "client-secret",
|
|
"standardFlowEnabled": true,
|
|
"directAccessGrantsEnabled": false,
|
|
"serviceAccountsEnabled": false,
|
|
"publicClient": false,
|
|
"redirectUris": ["https://drop-k8s.hackathon.forteapps.net/auth/callback"],
|
|
"webOrigins": ["https://drop-k8s.hackathon.forteapps.net"],
|
|
"defaultClientScopes": ["openid","email","profile"]
|
|
}
|