fix(publish-helm-chart): skip plugin verification for helm v4 compat#111
Merged
sydorovdmytro merged 1 commit intomainfrom Apr 15, 2026
Merged
fix(publish-helm-chart): skip plugin verification for helm v4 compat#111sydorovdmytro merged 1 commit intomainfrom
sydorovdmytro merged 1 commit intomainfrom
Conversation
Helm v4.1.4 (installed by default since #106) verifies plugin sources on `helm plugin install`. The chartmuseum/helm-push plugin does not ship a verification manifest, so the install fails with: Error: plugin source does not support verification. Use --verify=false to skip verification Pass `--verify=false` explicitly. The flag is accepted (as a no-op) on v3, so callers pinning `helm-version: v3.x` are unaffected. Broke nightly head-chart publish for loft-enterprise (and any other caller using publish-helm-chart/v1).
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Summary
helm plugin install. Thechartmuseum/helm-pushplugin does not ship a verification manifest, so the install fails:--verify=falsefixes the install. The flag is also accepted on v3 (as a no-op), so callers pinninghelm-version: v3.xare unaffected.Impact
Broke the nightly head-chart publish in
loft-enterpriseafter loft-sh/loft-enterprise#6673 adopted this reusable workflow. Any other caller usingpublish-helm-chart/v1is affected the same way.Follow-up
After merge, move the
publish-helm-chart/v1tag to this commit:Test plan
make lintpasses locally (actionlint + zizmor clean)make test-publish-helm-chartruns (bats unchanged — the shell script wasn't touched)loft-enterpriseonce thepublish-helm-chart/v1tag is moved