[docs] Add external Helm charts documentation (AddHelmChart)#905
Open
aspire-repo-bot[bot] wants to merge 1 commit into
Open
[docs] Add external Helm charts documentation (AddHelmChart)#905aspire-repo-bot[bot] wants to merge 1 commit into
aspire-repo-bot[bot] wants to merge 1 commit into
Conversation
13 tasks
f254d35 to
d758445
Compare
d758445 to
37fcec5
Compare
IEvangelist
reviewed
May 11, 2026
Comment on lines
+19
to
+20
| 1. Aspire generates and deploys your application's own Helm chart (`helm-deploy-{environment}`). | ||
| 2. Each external chart registered with `AddHelmChart` is installed via `helm upgrade --install` (`helm-install-{name}`). |
| .WithHelmValue("config.enableGatewayAPI", "true"); | ||
| ``` | ||
| </TabItem> | ||
| </Tabs> |
Member
There was a problem hiding this comment.
We're missing the TS apphost.ts here, even if we don't have code for it - we should at least have something in a corresponding message that calls out missing support in TS.
Documents the new AddHelmChart API introduced in microsoft/aspire#16589. - New page: deployment/kubernetes/helm-charts.mdx - AddHelmChart, WithHelmValue, WithNamespace, WithReleaseName, WithDestroy - Both Kubernetes and AKS environments covered - Sidebar entry and cross-references added Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com>
37fcec5 to
a6b72fd
Compare
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 changes from microsoft/aspire#16589
Authored by
@mitchdenny.Targeting
mainbecauserelease/13.4does not yet exist onmicrosoft/aspire.dev(the milestone13.4resolved torelease/13.4, but that branch was not found in this repo).Why this PR is needed
PR #16589 adds a significant new user-facing API —
AddHelmChart— that lets AppHost authors install external Helm charts (cert-manager, NGINX ingress, monitoring tools, etc.) as post-deploy pipeline steps alongside the application's own generated Helm chart. This capability has no prior documentation on aspire.dev.What was changed
New page
src/frontend/src/content/docs/deployment/kubernetes/helm-charts.mdx— Full guide covering:AddHelmChart(name, chartReference, chartVersion)for Kubernetes and AKS environmentsWithHelmValue(key, value)for--setargumentsWithNamespaceandWithReleaseNamefor overriding defaultsWithDestroy()opt-in uninstall onaspire destroy.tgz,repo/chart)Updated pages
src/frontend/src/content/docs/deployment/kubernetes/kubernetes.mdx— Added "Install external Helm charts" section with cross-referencesrc/frontend/src/content/docs/deployment/kubernetes/aks.mdx— Added "Install external Helm charts" section with cross-referencesrc/frontend/src/content/docs/deployment/kubernetes/index.mdx— Added LinkCard for new pagesrc/frontend/config/sidebar/deployment.topics.ts— Added "External Helm charts" sidebar entry under Kubernetes