You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
We got the same error with "helm s3 push" after we added helm charts to our helm repo with versions which seem not follow https://semver.org/
e.g
version: 1.2.3-name1-name2 (version names with 2 "-")
instead of 1.2.3-name1 or 1.2.3-name.1
My workaround:
copy charts to local dir
aws s3 sync s3://$bucketname $localdir
delete affected charts from $localdir
copy charts back to s3
aws s3 sync $localdir s3://$bucketname
We run
$ helm s3 version
0.9.2
$ helm version
version.BuildInfo{Version:"v3.4.2", GitCommit:"23dd3af5e19a02d4f4baa5b2f242645a1a3af629", GitTreeState:"dirty", GoVersion:"go1.15.5"}
S3 plugin was throwing semver validation error even if my version was valid, got fixed by re-indexing, error handling should be improved.
The text was updated successfully, but these errors were encountered: