Hi Team, Has anyone seen this while issuing `helm ...
# flyte-deployment
s
Hi Team, Has anyone seen this while issuing
helm install
?
Copy code
Error: file '/Users/shahwar.saleem/Library/Caches/helm/repository/flyte-core-v1.1.0.tgz' does not appear to be a gzipped archive; got 'application/octet-stream'
@katrina
k
looks like it might be a helm tool version issue? https://github.com/helm/helm/issues/2916#issuecomment-678930024
s
I am not sure, I was using the same version before and this worked until yesterday. I also have higher helm3 version:
Copy code
version.BuildInfo{Version:"v3.5.4"
Did Flyteorg update its helm charts from v1.1.0?
k
no we should not have cc @Eduardo Apolinario (eapolinario)
s
This file seems empty:
Copy code
/Users/shahwar.saleem/Library/Caches/helm/repository/flyte-core-v1.1.0.tgz: empty
k
do you have more verbose output from the helm install command?
s
That is the only thing I am getting...
e
cc: @Yuvraj who was investigating this problem earlier today
s
Do we know if there was an issue reported for this?
g
The helm index is pointing to the URL
<https://flyteorg.github.io/flyte/flyte-core-v1.1.0.tgz>
, which redirects to
<https://helm.flyte.org/flyte-core-v1.1.0.tgz>
, but that URL returns a zero length content response.
Copy code
curl -v <https://helm.flyte.org/flyte-core-v1.1.0.tgz>
...
content-length: 0
e
@Shahwar Saleem, @Geoff Salmon, this should be fixed now.
g
great, thanks
@Eduardo Apolinario (eapolinario) This is not causing any issues but it might point to a problem with build process. The README.md in the
flyte-core-v1.1.0.tgz
looks like it's from the flyte-deps chart:
Copy code
$ curl -s <https://helm.flyte.org/flyte-core-v1.1.0.tgz> | tar -xzO flyte-core/README.md | head -n 5
# flyte-deps

![Version: v1.1.0](<https://img.shields.io/badge/Version-v1.1.0-informational?style=flat-square>) ![Type: application](<https://img.shields.io/badge/Type-application-informational?style=flat-square>)

A Helm chart for Flyte dependency
again, this isn't something I'm saying needs to be immediately fixed or anything. just an FYI
the rest of the files appear to be from the
charts/flyte-core
directory
164 Views