Skip to content
Merged
Show file tree
Hide file tree
Changes from 3 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions ci/docker-compose-wcs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,10 +18,10 @@ services:
PERSISTENCE_DATA_PATH: '/var/lib/weaviate'
AUTHENTICATION_ANONYMOUS_ACCESS_ENABLED: 'false'
AUTHENTICATION_OIDC_ENABLED: 'true'
AUTHENTICATION_OIDC_CLIENT_ID: 'wcs'
AUTHENTICATION_OIDC_ISSUER: 'https://auth.wcs.api.weaviate.io/auth/realms/SeMI'
AUTHENTICATION_OIDC_CLIENT_ID: 'Peuc12y02UA0eAED1dqSjE5HtGUrpBsx'
AUTHENTICATION_OIDC_ISSUER: 'https://auth.weaviate.cloud/Peuc12y02UA0eAED1dqSjE5HtGUrpBsx'
AUTHENTICATION_OIDC_USERNAME_CLAIM: 'email'
AUTHENTICATION_OIDC_GROUPS_CLAIM: 'groups'
AUTHENTICATION_OIDC_GROUPS_CLAIM: 'roles'
AUTHORIZATION_ADMINLIST_ENABLED: 'true'
AUTHORIZATION_ADMINLIST_USERS: 'oidc-test-user@weaviate.io'
AUTHENTICATION_OIDC_SCOPES: 'openid,email'
Expand Down
2 changes: 1 addition & 1 deletion src/misc/journey.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -92,7 +92,7 @@ describe('misc endpoints', () => {
.openidConfigurationGetter()
.do()
.then((res: any) => {
expect(res.clientId).toEqual('wcs');
expect(res.clientId).toEqual('Peuc12y02UA0eAED1dqSjE5HtGUrpBsx');
expect(res.href).toContain('.well-known/openid-configuration');
expect(res.scopes).toEqual(['openid', 'email']);
});
Expand Down
Loading