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

Commit

Permalink
lakefs v0.0.2
Browse files Browse the repository at this point in the history
  • Loading branch information
fcomte committed Jul 31, 2022
1 parent a10160a commit 947ff78
Show file tree
Hide file tree
Showing 2 changed files with 12 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.1
version: 0.0.2

# 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
16 changes: 11 additions & 5 deletions charts/lakefs/values.schema.json
Original file line number Diff line number Diff line change
Expand Up @@ -132,7 +132,11 @@
"description": "Name for the default database that is created when the image is first started.",
"type": "string",
"title": "Database",
"default": "mlflow"
"default": "lakefs",
"x-onyxia": {
"hidden": true,
"overwriteDefaultWith": "lakefs"
}
}
}
}
Expand All @@ -149,12 +153,10 @@
"type": "string",
"title": "LakeFS configuration",
"x-form": {
"hidden": true,
"value": "blockstore:\n type: s3\n s3:\n region: {{s3.AWS_DEFAULT_REGION}}\n discover_bucket_region: false\n endpoint: https://{{s3.AWS_S3_ENDPOINT}}\n force_path_style: true\n credentials:\n access_key_id:{{s3.AWS_ACCESS_KEY_ID}}\n secret_access_key:{{s3.AWS_SECRET_ACCESS_KEY}}\n session_token:{{s3.AWS_SESSION_TOKEN}}\n"
},
"x-onyxia": {
"hidden": true,
"overwriteDefaultWith": "{{project.id}}-{{k8s.randomSubdomain}}.{{k8s.domain}}"
"overwriteDefaultWith": "blockstore:\n type: s3\n s3:\n region: {{s3.AWS_DEFAULT_REGION}}\n discover_bucket_region: false\n endpoint: https://{{s3.AWS_S3_ENDPOINT}}\n force_path_style: true\n credentials:\n access_key_id:{{s3.AWS_ACCESS_KEY_ID}}\n secret_access_key:{{s3.AWS_SECRET_ACCESS_KEY}}\n session_token:{{s3.AWS_SESSION_TOKEN}}\n"
}
},
"secrets": {
Expand All @@ -167,9 +169,11 @@
"title": "Admin user",
"default": "admin",
"x-form": {
"value": "postgres://{{project.id}}:{{project.password}}@lakefs-db:5432/defaultdb?sslmode=disable"
"hidden": true,
"value": "postgres://{{project.id}}:{{project.password}}@lakefs-db:5432/lakefs?sslmode=disable"
},
"x-onyxia": {
"hidden": true,
"overwriteDefaultWith": "postgres://{{project.id}}:{{project.password}}@lakefs-db:5432/defaultdb?sslmode=disable"
}
},
Expand All @@ -178,9 +182,11 @@
"title": "Password",
"default": "changeme",
"x-form": {
"hidden": true,
"value": "{{project.password}}"
},
"x-onyxia": {
"hidden": true,
"overwriteDefaultWith": "{{project.password}}"
}
}
Expand Down

0 comments on commit 947ff78

Please sign in to comment.