Document helm bump command on the cheat sheet - #2193
Draft
promptless-for-oss wants to merge 1 commit into
Draft
Conversation
Document the new `helm bump [VERSION_TYPE] [CHART]` command in the Chart Management section of the cheat sheet. Covers the default patch bump, major/minor/patch, stable, pre-release (alpha/beta/rc/post/dev), and explicit version-literal forms. Source: helm/helm PR #32402 Signed-off-by: promptless[bot] <promptless[bot]@users.noreply.github.com>
3 tasks
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.
Documents the new
helm bump [VERSION_TYPE] [CHART]command in the "Chart Management" section of the Helm cheat sheet (docs/intro/CheatSheet.mdx), following the same pattern used for the other chart-management commands.The command reads a chart's current version from
Chart.yaml, computes a new version, and rewritesChart.yamlin place. The added entries cover:VERSION_TYPEis omittedmajor/minor/patchbumpsstable(strips the pre-release suffix)alpha,beta,rc,post,dev)The full CLI reference page (
docs/helm/helm_bump.md) is auto-generated upstream from the cobra command definitions and is intentionally not included here.Source: helm/helm PR #32402 (helm/helm#32402).