-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
This PR adds two new options RBAC (bool) and RBAC_CONFIG (string) which allow configuring RBAC in Weaviate. It also improves the help information displayed when no option is passed or when local-k8s.sh --help is executed. Last, it improves the busy loops that wait for services to be ready which were kind of broken before and adds an automatic way to pass authentication if required.
- Loading branch information
Showing
6 changed files
with
317 additions
and
43 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,22 @@ | ||
authentication: | ||
anonymous_access: | ||
enabled: false | ||
apikey: | ||
enabled: true | ||
allowed_keys: | ||
- admin-key | ||
- reader-key | ||
users: | ||
- admin | ||
- reader | ||
roles: | ||
- admin | ||
- reader | ||
oidc: | ||
enabled: false | ||
authorization: | ||
admin_list: | ||
enabled: true | ||
users: | ||
- admin | ||
- reader |
Oops, something went wrong.