-
Notifications
You must be signed in to change notification settings - Fork 0
Update default Helm version to 4.2.0 in CI/CD workflows #96
New issue
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
Merged
Merged
Changes from all commits
Commits
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
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
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
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
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
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
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
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.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
🧩 Analysis chain
🏁 Script executed:
Repository: simplify9/.github
Length of output: 2720
🌐 Web query:
Is Helm CLI version 4.2.0 officially released and what are the documented breaking changes vs Helm 3 that impacthelm lint,helm template, orhelm package?💡 Result:
Yes, Helm CLI version 4.2.0 is officially released [1][2]. It was published on May 14, 2026 [1][3]. Helm 4 introduces several architectural and breaking changes compared to Helm 3. While many workflows remain compatible, specific changes impact how you use commands like helm lint, helm template, and helm package [4][5]. Key breaking changes and impacts include: 1. Linting (helm lint) - The lint package has been refactored [6]. Specifically, it was moved to be part of each chart version to improve validation, including enhanced support for CRD directories [6][7][8]. - The linting process now returns early if the templates/ directory does not exist [6]. - Legacy Helm v2 template lint rules have been removed [6]. 2. Templating (helm template) - Post-renderers, which are used during rendering, are now implemented as plugins [5][8]. Consequently, you can no longer pass an executable directly to the post-renderer flag; you must use a configured plugin name instead [5]. - Several flags (e.g., --hide-notes and --render-subchart-notes) are deprecated and have no effect, as template output no longer includes notes by default [5]. - New template functions such as mustToYaml and mustToJson have been added [6][7][9]. 3. Packaging (helm package) - The internal package structure has been moved to versioned packages (e.g., pkg/chart/v2) to support future chart API versions [5][7][8]. - Plugin packaging, signing, and verification processes were overhauled, including the removal of unnecessary file I/O operations [6][8]. General breaking changes also include: - Removal of the HELM_EXPERIMENTAL_OCI environment variable; OCI registry support is now enabled by default [10]. - Flag renaming for certain commands (e.g., --atomic changed to --rollback-on-failure and --force to --force-replace) [7]. - Plugin system overhaul based on WebAssembly (WASM), which may require existing plugins to be updated for compatibility [7][10]. - If you use Helm as a Go library, the module path has changed from helm.sh/helm/v3 to helm.sh/helm/v4 [10][8]. For detailed migration steps and a full list of changes, refer to the official Helm release notes and documentation [11][4][5].
Citations:
🏁 Script executed:
Repository: simplify9/.github
Length of output: 18565
🏁 Script executed:
Repository: simplify9/.github
Length of output: 23860
🏁 Script executed:
Repository: simplify9/.github
Length of output: 8463
🏁 Script executed:
Repository: simplify9/.github
Length of output: 8463
🏁 Script executed:
Repository: simplify9/.github
Length of output: 9996
🏁 Script executed:
Repository: simplify9/.github
Length of output: 43
🏁 Script executed:
Repository: simplify9/.github
Length of output: 135
🏁 Script executed:
Repository: simplify9/.github
Length of output: 5020
🏁 Script executed:
Repository: simplify9/.github
Length of output: 1079
Verify Helm 4.2.0 compatibility before defaulting
helm-versioningeneric-gateway-chart-cicdFile:
.github/workflows/generic-gateway-chart-cicd.yml(Lines 19-20, also 85-86)The workflow now defaults
helm-versionto4.2.0(for bothworkflow_callandworkflow_dispatch), installs it viaazure/setup-helm@v5, and uses it forhelm lint,helm template, andhelm package. The repo still documents/pins Helm 3 expectations (.github/workflows/sw-cicd.ymluseshelm-version: '3.2.4', andREADME.mdlistshelm-versionasv3.21.0), so Helm 4’s breaking behavioral changes could affect lint/template/package outputs across callers.🤖 Prompt for AI Agents