This repository is currently being migrated. It's locked while the migration is in progress.
forked from digitalocean/marketplace-kubernetes
-
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.
- Loading branch information
Showing
2 changed files
with
35 additions
and
0 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,34 @@ | ||
#!/bin/sh | ||
|
||
set -e | ||
|
||
################################################################################ | ||
# repo | ||
################################################################################ | ||
helm repo add lakefs http://charts.lakefs.io/ | ||
helm repo update > /dev/null | ||
|
||
################################################################################ | ||
# chart | ||
################################################################################ | ||
STACK="lakefs" | ||
CHART="lakefs/lakefs" | ||
CHART_VERSION="0.5.15" | ||
NAMESPACE="lakefs" | ||
|
||
if [ -z "${MP_KUBERNETES}" ]; then | ||
# use local version of values.yml | ||
ROOT_DIR=$(git rev-parse --show-toplevel) | ||
values="$ROOT_DIR/stacks/lakefs/values.yml" | ||
else | ||
# use github hosted master version of values.yml | ||
values="https://raw.githubusercontent.com/digitalocean/marketplace-kubernetes/master/stacks/lakefs/values.yml" | ||
fi | ||
|
||
helm upgrade "$STACK" "$CHART" \ | ||
--atomic \ | ||
--create-namespace \ | ||
--install \ | ||
--namespace "$NAMESPACE" \ | ||
--values "$values" \ | ||
--version "$CHART_VERSION" |
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 @@ | ||
# lakefs/lakefs |