docs(kubernetes): add --devel for Pangolin Helm pre-release installs - #140
Open
marcschaeferger wants to merge 1 commit into
Open
docs(kubernetes): add --devel for Pangolin Helm pre-release installs#140marcschaeferger wants to merge 1 commit into
marcschaeferger wants to merge 1 commit into
Conversation
The Pangolin chart is published as a pre-release, and Helm hides pre-release versions from search and refuses to install them unless --devel is passed or an exact version is named. Following these instructions on a clean Helm setup listed only the Newt chart and failed the install. Adds --devel to the install, upgrade and Gerbil startup-mode commands, documents the explicit --version alternative as the safer choice for production, and refreshes the OCI examples, which still pinned 0.1.0-alpha.0. Fixes #139 Signed-off-by: Marc Schäfer <git@marcschaeferger.de>
|
Preview deployment for your docs. Learn more about Mintlify Previews.
💡 Tip: Enable Automations to automatically generate PRs for you. |
Member
|
Let me know when you want to merge after the 0.1.0-alpha.2 is out! :}
|
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.
The Pangolin chart is published as a pre-release (
0.1.0-alpha.2). Helm excludes pre-release versions fromhelm searchand refuses to install them unless--develis passed or an exact version is named, so following this page on a clean Helm setup listed only the Newt chart and failed the install withno chart version found.Changes:
--develadded to the install, upgrade and Gerbil startup-mode commands, plus ahelm search repo fossorial --develexample.<Warning>explaining why the flag is needed, and that it applies only to Pangolin — the Newt chart has stable releases and needs nothing.<Tip>documenting the explicit--versionalternative, which is the safer choice for production since it does not silently follow the newest alpha. An explicit--versionalso makes--develunnecessary.0.1.0-alpha.0; refreshed to the current0.1.0-alpha.2.The chart deliberately stays a pre-release, so this documents the current behaviour rather than working around it. Once a stable Pangolin chart is released, the
--develflags and the warning can be dropped.Fixes #139