1
1
---
2
- title : RBAC Server Implementation -Deprecated-
2
+ title : RBAC Server Implementation
3
3
description : Instructions for implementing an RBAC server to manage permissions in lakeFS OSS.
4
4
parent : Security
5
5
---
6
6
7
7
# RBAC Server Implementation
8
8
9
- ## Table of Contents
10
-
11
- - [ Overview] ( #overview )
12
- - [ What is RBAC?] ( #what-is-rbac )
13
- - [ Setting Up the RBAC Server] ( #setting-up-the-rbac-server )
14
- - [ Implementation] ( #implementation )
15
- - [ Credentials APIs] ( #credentials-apis )
16
- - [ Users APIs] ( #users-apis )
17
- - [ Groups APIs] ( #groups-apis )
18
- - [ Policies APIs] ( #policies-apis )
19
- - [ LakeFS Configuration] ( #configuration )
20
- - [ Setup Considerations] ( #setup-considerations )
21
- - [ Running the Server] ( #running-the-server )
9
+ {% include toc_2-4.html %}
22
10
23
11
## Overview
24
12
@@ -30,6 +18,7 @@ Contents:
30
18
2 . How to configure lakeFS OSS to connect to your RBAC server.
31
19
3 . How to run lakeFS OSS with your RBAC server.
32
20
21
+ {: .note}
33
22
> For a detailed explanation of the RBAC model in lakeFS, see [ RBAC in lakeFS] ( ./rbac.md ) .
34
23
35
24
## What is RBAC?
@@ -55,6 +44,7 @@ Not all APIs in the specification are required — only those listed below, grou
55
44
56
45
Implement all APIs under these categories.
57
46
47
+ {: .note}
58
48
> For detailed descriptions of each API, including their input and output parameters, refer to each API in
59
49
> the [ authentication.yaml specification] ( ./authorization-yaml.md ) .
60
50
@@ -127,7 +117,8 @@ auth:
127
117
token :
128
118
` ` `
129
119
130
- > **Note:** The ` auth.api.token` parameter is optional. If unspecified, lakeFS uses the `auth.encrypt.secret_key` as
120
+ {: .note}
121
+ > The ` auth.api.token` parameter is optional. If unspecified, lakeFS uses the `auth.encrypt.secret_key` as
131
122
> the token. If specified, provide a JWT token directly or via the environment variable `LAKEFS_AUTH_API_TOKEN`.
132
123
133
124
# ## Setup Considerations
0 commit comments