Skip to content
This repository has been archived by the owner on Sep 18, 2024. It is now read-only.

Commit

Permalink
lakefs
Browse files Browse the repository at this point in the history
  • Loading branch information
fcomte committed Aug 10, 2022
1 parent da887f0 commit 315a4f1
Show file tree
Hide file tree
Showing 3 changed files with 17 additions and 6 deletions.
2 changes: 1 addition & 1 deletion charts/lakefs/Chart.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ type: application
# This is the chart version. This version number should be incremented each time you make changes
# to the chart and its templates, including the app version.
# Versions are expected to follow Semantic Versioning (https://semver.org/)
version: 0.0.5
version: 0.0.6

# This is the version number of the application being deployed. This version number should be
# incremented each time you make changes to the application. Versions are not expected to
Expand Down
15 changes: 13 additions & 2 deletions charts/lakefs/values.schema.json
Original file line number Diff line number Diff line change
Expand Up @@ -128,6 +128,17 @@
"overwriteDefaultWith": "{{project.password}}"
}
},
"postgresPassword": {
"type": "string",
"title": "Password",
"default": "changeme",
"x-form": {
"value": "{{project.password}}"
},
"x-onyxia": {
"overwriteDefaultWith": "{{project.password}}"
}
},
"database": {
"description": "Name for the default database that is created when the image is first started.",
"type": "string",
Expand Down Expand Up @@ -171,11 +182,11 @@
"default": "admin",
"x-form": {
"hidden": true,
"value": "postgres://{{project.id}}:{{project.password}}@lakefs-db:5432/lakefs?sslmode=disable"
"value": "postgres://postgres:{{project.password}}@lakefs-db:5432/lakefs?sslmode=disable"
},
"x-onyxia": {
"hidden": true,
"overwriteDefaultWith": "postgres://{{project.id}}:{{project.password}}@lakefs-db:5432/lakefs?sslmode=disable"
"overwriteDefaultWith": "postgres://postgres:{{project.password}}@lakefs-db:5432/lakefs?sslmode=disable"
}
},
"authEncryptSecretKey": {
Expand Down
6 changes: 3 additions & 3 deletions charts/lakefs/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ global:
auth:
username: "admin"
password: "changeme"
database: "mlflow"
database: "lakefs"

lakefs:
lakefsConfig: |
Expand All @@ -21,8 +21,8 @@ lakefs:
force_path_style: true
discover_bucket_region: false
secrets:
databaseConnectionString: postgres://user-tm8enk:ai6oi4lzpmcqpe7ckbt7@postgresql-54301:5432/defaultdb?sslmode=disable
authEncryptSecretKey: ai6oi4lzpmcqpe7ckbt7
databaseConnectionString: postgres://admin:changeme@:5432/lakefs?sslmode=disable
authEncryptSecretKey: changeme

security:
networkPolicy:
Expand Down

0 comments on commit 315a4f1

Please sign in to comment.