docs(enterprise-portal): document namespace prop for HelmInstallAssets - #4331
Open
kriscoleman wants to merge 3 commits into
Open
docs(enterprise-portal): document namespace prop for HelmInstallAssets#4331kriscoleman wants to merge 3 commits into
kriscoleman wants to merge 3 commits into
Conversation
Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>
✅ Deploy Preview for replicated-docs ready!
To edit notification comments on pull requests, go to your Netlify project configuration. |
✅ Deploy Preview for replicated-docs-upgrade ready!
To edit notification comments on pull requests, go to your Netlify project configuration. |
…r name) Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>
kriscoleman
marked this pull request as ready for review
August 4, 2026 01:27
Member
Author
…ion components Covers HelmInstallAssets, HelmAirgapInstallAssets, and HelmUpdateAssets after the prop was extended to be comprehensive/unified across the Helm commands. Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>
Member
|
Nits, not blockers:
|
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.


What
Documents a new optional
namespaceprop on the<HelmInstallAssets />component in the Enterprise Portal v2 content reference (docs/vendor/enterprise-portal-v2-content.mdx).When set, the generated Helm install command includes
--namespace <namespace>, so the app installs into that namespace. When omitted, the install uses the default namespace, so existing content is unchanged.Why
Some customers always install into a fixed namespace. Today the generated command uses the default namespace, so those customers have to hand-edit the copied command every time. The
namespaceprop lets vendors bake the right namespace straight into the install page and remove that friction.Examples added
The common case, a single fixed namespace for everyone:
And an extensible version that defaults to
my-namespacebut lets ahelm_namespacecustom license field override it per customer:<HelmInstallAssets namespace={entitlements.helm_namespace || "my-namespace"} />Notes
This pairs with the vandoor code PR that adds the
namespaceprop to<HelmInstallAssets />. The docs shouldn't land ahead of that, so I'm leaving this as a draft until the code side is in.🤖 Generated with Claude Code