We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
helm install minio stable/minio \ --set accessKey=minioadmin \ --set secretKey=minioadmin \ --namespace minio-system
Gives Error: failed to download "stable/minio" (hint: running helm repo update may help). Need to reference specific helm repo in https://github.com/SeldonIO/seldon-core/blob/master/notebooks/minio_setup.ipynb and https://github.com/SeldonIO/seldon-core/blob/master/examples/minio_setup.ipynb
Error: failed to download "stable/minio" (hint: running
may help)
Can add stable with:
helm repo add stable https://kubernetes-charts.storage.googleapis.com helm repo update
But it still fails and helm pull stable/minio gives Error: failed to fetch https://charts.helm.sh/stable/minio-5.0.33.tgz : 404 Not Found
helm pull stable/minio
Error: failed to fetch https://charts.helm.sh/stable/minio-5.0.33.tgz : 404 Not Found
Am on helm v3.2.4 and seems others have seen permutations of this. Could be the chart's versioning or related to the deprecating of the stable repo. We should now be using https://github.com/minio/charts. So
helm repo add minio https://helm.min.io/ helm install minio minio/minio \ --set accessKey=minioadmin \ --set secretKey=minioadmin \ --namespace minio-system
The text was updated successfully, but these errors were encountered:
Successfully merging a pull request may close this issue.
Gives
Error: failed to download "stable/minio" (hint: running
helm repo updatemay help)
. Need to reference specific helm repo in https://github.com/SeldonIO/seldon-core/blob/master/notebooks/minio_setup.ipynb and https://github.com/SeldonIO/seldon-core/blob/master/examples/minio_setup.ipynbCan add stable with:
But it still fails and
helm pull stable/minio
givesError: failed to fetch https://charts.helm.sh/stable/minio-5.0.33.tgz : 404 Not Found
Am on helm v3.2.4 and seems others have seen permutations of this. Could be the chart's versioning or related to the deprecating of the stable repo. We should now be using https://github.com/minio/charts. So
The text was updated successfully, but these errors were encountered: