Skip to content

Commit 6b76047

Browse files
authored
Merge pull request #1610 from weaviate/handle_renaming
Handle renaming of dynamic users =>db users
2 parents f4a7d0f + 2a0d435 commit 6b76047

3 files changed

Lines changed: 4 additions & 4 deletions

File tree

.github/workflows/main.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ env:
2424
WEAVIATE_127: 1.27.14
2525
WEAVIATE_128: 1.28.8
2626
WEAVIATE_129: 1.29.1
27-
WEAVIATE_130: 1.30.0-rc.0-93c564d-amd64
27+
WEAVIATE_130: 1.30.0-rc.0-c1830a7-amd64
2828

2929
jobs:
3030
lint-and-format:

ci/docker-compose-rbac.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ services:
2727
CLUSTER_DATA_BIND_PORT: "7101"
2828
RAFT_BOOTSTRAP_EXPECT: "1"
2929
AUTHORIZATION_ENABLE_RBAC: "true"
30-
AUTHENTICATION_DYNAMIC_USERS_ENABLED: "true"
30+
AUTHENTICATION_DB_USERS_ENABLED: "true"
3131
AUTHENTICATION_OIDC_ENABLED: 'true'
3232
AUTHENTICATION_OIDC_CLIENT_ID: 'wcs'
3333
AUTHENTICATION_OIDC_ISSUER: 'https://auth.wcs.api.weaviate.io/auth/realms/SeMI'

weaviate/rbac/models.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,8 +15,8 @@
1515

1616

1717
class UserTypes(str, Enum):
18-
DB_DYNAMIC = "db_dynamic"
19-
DB_STATIC = "db_static"
18+
DB_DYNAMIC = "db_user"
19+
DB_STATIC = "db_env_user"
2020
OIDC = "oidc"
2121

2222

0 commit comments

Comments
 (0)