You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: docs/src/enterprise/getstarted/install.md
+35Lines changed: 35 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -225,6 +225,41 @@ Error: feature not licensed - to enable, contact support@treeverse.io
225
225
226
226
---
227
227
228
+
### License Configuration
229
+
230
+
!!! note
231
+
You can proceed without this step at the moment. However, licensing enforcement will be introduced soon.
232
+
Contact [support](mailto:support@treeverse.io) to receive your installation license.
233
+
234
+
lakeFS Enterprise requires a valid license to work.
235
+
In the helm chart the license is provided as a JWT token either from an existing secret or explicitly.
236
+
The following demonstrates how to configure the license in the `values` file:
237
+
238
+
=== "License with token provided in secrets"
239
+
240
+
```yaml
241
+
enterprise:
242
+
enabled: true
243
+
244
+
secrets:
245
+
licenseContents: <Your licese JWT token>
246
+
```
247
+
248
+
=== "License with token provided from existing secret"
249
+
250
+
```yaml
251
+
enterprise:
252
+
enabled: true
253
+
254
+
# Name of existing secret to use
255
+
existingSecret: <Name of existing secret>
256
+
257
+
secretKeys:
258
+
# Use to fetch license token from an existing secret:
259
+
licenseContentsKey: <Name of license contents key from existing secret>
260
+
```
261
+
262
+
228
263
### Authentication Configuration
229
264
230
265
Authentication in lakeFS Enterprise is handled directly by the lakeFS Enterprise service. This section explains the configurations required for setting up SSO.
Copy file name to clipboardExpand all lines: docs/src/enterprise/getstarted/quickstart.md
+1-1Lines changed: 1 addition & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -43,7 +43,7 @@ Checkout the [RBAC demo](https://github.com/treeverse/lakeFS-samples/blob/main/0
43
43
3. With the token you've been granted, login locally to Docker Hub with `docker login -u externallakefs -p <TOKEN>`.
44
44
45
45
<br>
46
-
The quickstart docker-compose files below create a lakeFS server that's connected to a [local blockstore](../../howto/deploy/onprem.md#local-blockstore) and spin up the following containers:
46
+
The quickstart docker-compose file below creates a lakeFS server that's connected to a [local blockstore](../../howto/deploy/onprem.md#local-blockstore) and spin up the following containers:
0 commit comments