Updated helm chart to use lakeFS v1. Chart version...
# dev
b
Updated helm chart to use lakeFS v1. Chart version also bumped to v1 šŸŽ‰
šŸŽŠ 5
šŸ’„ 2
s
Thanks, @Barak Amar. I'm currently seeing:
Copy code
> 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?
šŸ‘€ 1
b
can you try
helm search repo lakefs/lakefs
check that running successfully
helm repo update lakefs/lakefs
I've tried
helm install barak-lakefs lakefs/lakefs
Copy code
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>
I can check with values, if you can share some with scrubbed secrets I can try to see why it fails on your side
Think I got it - check your working directory doesn't have a folder named lakefs - helm will try to install from there and will fail to find
Chat.yaml
.
s
Thanks, @Barak Amar. My bad. Yes, I had a checkout of the lakefs repo in the same directory.
šŸ‘ 1