22 lines
583 B
YAML
22 lines
583 B
YAML
apiVersion: v1
|
|
kind: Secret
|
|
metadata:
|
|
name: keycloak-client-chibisafe
|
|
namespace: chibisafe
|
|
labels:
|
|
keycloak.forteapps.net/client-config: "true"
|
|
stringData:
|
|
client.json: |
|
|
{
|
|
"clientId": "chibisafe",
|
|
"name": "Chibisafe",
|
|
"redirectUris": ["https://chibisafe.forteapps.net/*"],
|
|
"webOrigins": ["https://chibisafe.forteapps.net"],
|
|
"protocolMappers": [],
|
|
"secret": {
|
|
"namespace": "chibisafe",
|
|
"name": "chibisafe-oidc-credentials",
|
|
"keys": { "clientId": "client-id", "clientSecret": "client-secret" }
|
|
}
|
|
}
|