test: add live Keycloak OIDC gate (#6562)

This commit is contained in:
Zhengchao An
2026-08-25 04:34:46 +08:00
committed by GitHub
parent 40f1356831
commit 017ffb92f7
3 changed files with 393 additions and 0 deletions
+42
View File
@@ -0,0 +1,42 @@
{
"realm": "rustfs-ci",
"enabled": true,
"sslRequired": "none",
"accessTokenLifespan": 300,
"clients": [
{
"clientId": "rustfs-ci",
"secret": "rustfs-ci-secret",
"enabled": true,
"protocol": "openid-connect",
"publicClient": false,
"standardFlowEnabled": false,
"directAccessGrantsEnabled": true
},
{
"clientId": "wrong-audience",
"secret": "wrong-audience-secret",
"enabled": true,
"protocol": "openid-connect",
"publicClient": false,
"standardFlowEnabled": false,
"directAccessGrantsEnabled": true
}
],
"users": [
{
"id": "00000000-0000-0000-0000-000000000001",
"username": "alice",
"email": "alice@example.test",
"emailVerified": true,
"enabled": true,
"credentials": [
{
"type": "password",
"value": "alice-password",
"temporary": false
}
]
}
]
}