Barak Amar
Sean Davis
10/20/2023, 4:37 PM> helm install new_lakefs lakefs/lakefs -f values.yml
Error: INSTALLATION FAILED: Chart.yaml file is missing
⯠helm search repo lakefs
NAME CHART VERSION APP VERSION DESCRIPTION
lakefs/lakefs 1.0.0 1.0.0 A Helm chart for running LakeFS on Kubernetes
Did I miss a step somewhere, or is there perhaps a glitch in the release?Barak Amar
helm search repo lakefs/lakefs
Barak Amar
helm repo update lakefs/lakefs
Barak Amar
helm install barak-lakefs lakefs/lakefs
Barak Amar
NAME: barak-lakefs
LAST DEPLOYED: Fri Oct 20 19:46:39 2023
NAMESPACE: default
STATUS: deployed
REVISION: 1
TEST SUITE: None
NOTES:
Thank you for installing lakeFS!
1. Run the following to get a url to start setting up lakeFS:
export POD_NAME=$(kubectl get pods --namespace default -l "<http://app.kubernetes.io/instance=barak-lakefs|app.kubernetes.io/instance=barak-lakefs>" -o jsonpath="{.items[0].metadata.name}")
kubectl wait --for=condition=ready pod $POD_NAME
echo "Visit <http://127.0.0.1:8000/setup> to use your application"
kubectl port-forward $POD_NAME 8000:8000 --namespace default
2. See the docs on how to create your first repository: <https://docs.lakefs.io/quickstart/repository.html>
Barak Amar
Barak Amar
Chat.yaml
.Sean Davis
10/20/2023, 5:24 PM