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
I'm using helm push on my CI/CD pipeline and I found that an option is missing for a simple use-case.
On a chart monorepo, think about a CI/CD pipeline that tries to push each chart to a chartmuseum to ensure that all charts are uploaded.
For instance, something like:
fordin ./charts/*;do
helm push $d chartmuseum
done
You don't want to use the --force flag, to prevent unversioned changes to be pushed on the chartmuseum but you don't want to see your pipeline fail each time it tries to push an already existing chart version.
Using helm-push v0.9.0 you get the following error:
Hi!
I'm using
helm push
on my CI/CD pipeline and I found that an option is missing for a simple use-case.On a chart monorepo, think about a CI/CD pipeline that tries to push each chart to a chartmuseum to ensure that all charts are uploaded.
For instance, something like:
You don't want to use the
--force
flag, to prevent unversioned changes to be pushed on the chartmuseum but you don't want to see your pipeline fail each time it tries to push an already existing chart version.Using
helm-push
v0.9.0 you get the following error:And we get an exit code != 0.
I think we can add a flag to make helm-push ignore this error.
I will create a PR to fix this issue, let's discuss about it :)
The text was updated successfully, but these errors were encountered: