Skip to content

Add AddHelmChart for installing external Helm charts#16589

Open
mitchdenny wants to merge 7 commits intomainfrom
feature/add-helm-chart
Open

Add AddHelmChart for installing external Helm charts#16589
mitchdenny wants to merge 7 commits intomainfrom
feature/add-helm-chart

Conversation

@mitchdenny
Copy link
Copy Markdown
Member

Description

Adds AddHelmChart infrastructure for installing external Helm charts into a Kubernetes environment as pipeline steps.

This enables installing pre-existing Helm charts (e.g., cert-manager, NGINX ingress controller, monitoring tools) alongside the Aspire-generated application Helm chart. Charts are installed via helm upgrade --install after the main application deploy.

New types and APIs

  • KubernetesHelmChartResource — models an external chart (OCI/repo reference, version, namespace, release name, values)
  • AddHelmChart(name, chartReference, chartVersion) — creates the resource and registers a helm-install-{name} pipeline step
  • WithHelmValue(key, value) — sets --set values for the chart
  • WithNamespace(namespace) / WithReleaseName(releaseName) — configure chart installation
  • AKS overloadAddHelmChart on AzureKubernetesEnvironmentResource that delegates to the inner K8S environment

Example usage

var k8s = builder.AddKubernetesEnvironment("k8s");

k8s.AddHelmChart("cert-manager", "oci://quay.io/jetstack/charts/cert-manager", "1.17.0")
    .WithHelmValue("crds.enabled", "true")
    .WithHelmValue("config.enableGatewayAPI", "true");

Also included

Moves KubernetesGatewayExtensions and KubernetesIngressExtensions to the Aspire.Hosting namespace (matching convention used by other hosting extension methods). This is also shipped as a standalone fix in #16588.

Testing

  • 9 new unit tests for the Helm chart resource and extensions
  • All 125 K8S tests + 37 Azure K8S tests pass
  • Manually tested on AKS cluster (midennaspireakstest2) with podinfo chart

Depends on #16588 (namespace fix, can merge independently)

Checklist

  • Is this feature complete?
    • Yes. Ready to ship.
    • No. Follow-up changes expected.
  • Are you including unit tests for the changes and scenario tests if relevant?
    • Yes
    • No
  • Did you add public API?
    • Yes
      • If yes, did you have an API Review for it?
        • Yes
        • No
      • Did you add <remarks /> and <code /> elements on your triple slash comments?
        • Yes
        • No
    • No
  • Does the change make any security assumptions or guarantees?
    • Yes
    • No
  • Does the change require an update in our Aspire docs?
    • Yes
    • No
Copilot AI review requested due to automatic review settings April 30, 2026 06:35
@github-actions
Copy link
Copy Markdown
Contributor

github-actions Bot commented Apr 30, 2026

🚀 Dogfood this PR with:

⚠️ WARNING: Do not do this without first carefully reviewing the code of this PR to satisfy yourself it is safe.

curl -fsSL https://raw.githubusercontent.com/microsoft/aspire/main/eng/scripts/get-aspire-cli-pr.sh | bash -s -- 16589

Or

  • Run remotely in PowerShell:
iex "& { $(irm https://raw.githubusercontent.com/microsoft/aspire/main/eng/scripts/get-aspire-cli-pr.ps1) } 16589"
Copy link
Copy Markdown
Contributor

Copilot AI left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Pull request overview

Adds infrastructure to model and deploy external Helm charts as post-deploy pipeline steps for Kubernetes (and AKS via delegation), plus aligns Kubernetes Ingress/Gateway extension-method namespaces with other hosting extensions.

Changes:

  • Introduces KubernetesHelmChartResource and KubernetesHelmChartExtensions.AddHelmChart(...) with WithHelmValue/WithNamespace/WithReleaseName configuration.
  • Registers a helm-install-{name} deploy pipeline step that runs after helm-deploy-{environment}.
  • Moves KubernetesIngressExtensions / KubernetesGatewayExtensions into the Aspire.Hosting namespace and adds an AKS AddHelmChart delegating overload.

Reviewed changes

Copilot reviewed 6 out of 6 changed files in this pull request and generated 6 comments.

Show a summary per file
File Description
tests/Aspire.Hosting.Kubernetes.Tests/KubernetesHelmChartTests.cs Adds unit coverage for the new Helm chart resource/builder behavior and pipeline annotation presence.
src/Aspire.Hosting.Kubernetes/KubernetesIngressExtensions.cs Moves ingress extensions into Aspire.Hosting namespace (adds using Aspire.Hosting.Kubernetes).
src/Aspire.Hosting.Kubernetes/KubernetesGatewayExtensions.cs Moves gateway extensions into Aspire.Hosting namespace (adds using Aspire.Hosting.Kubernetes).
src/Aspire.Hosting.Kubernetes/KubernetesHelmChartResource.cs Adds the public resource type modeling an external Helm chart and its configuration.
src/Aspire.Hosting.Kubernetes/KubernetesHelmChartExtensions.cs Adds the public fluent APIs and the deploy-time helm install pipeline step implementation.
src/Aspire.Hosting.Azure.Kubernetes/AzureKubernetesIngressExtensions.cs Adds AKS AddHelmChart overload delegating to the inner Kubernetes environment.
Comment on lines +121 to +128
public static IResourceBuilder<KubernetesHelmChartResource> WithNamespace(
this IResourceBuilder<KubernetesHelmChartResource> builder,
string @namespace)
{
ArgumentNullException.ThrowIfNull(builder);
ArgumentException.ThrowIfNullOrEmpty(@namespace);

builder.Resource.Namespace = @namespace;
Copy link

Copilot AI Apr 30, 2026

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

WithNamespace only checks for null/empty, but Kubernetes namespaces must be valid DNS labels (max length 63, lowercase alnum + '-' and must start/end alnum). Without validating here (and/or at deploy time), invalid namespaces can make the generated helm command fail or allow unexpected argument splitting. Consider validating with the same rules used by HelmChartOptions/HelmDeploymentEngine and throwing an ArgumentException with a helpful message.

Copilot uses AI. Check for mistakes.
Comment on lines +145 to +150
ArgumentException.ThrowIfNullOrEmpty(releaseName);

builder.Resource.ReleaseName = releaseName;
return builder;
}

Copy link

Copilot AI Apr 30, 2026

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

WithReleaseName only checks for null/empty, but Helm release names are constrained (DNS label, max length 53). Please validate releaseName (and ideally enforce lowercase) similarly to HelmChartOptions/HelmDeploymentEngine so consumers get an early, actionable error instead of a helm failure later.

Suggested change
ArgumentException.ThrowIfNullOrEmpty(releaseName);
builder.Resource.ReleaseName = releaseName;
return builder;
}
ValidateHelmReleaseName(releaseName);
builder.Resource.ReleaseName = releaseName;
return builder;
}
private static void ValidateHelmReleaseName(string releaseName)
{
ArgumentException.ThrowIfNullOrEmpty(releaseName);
if (releaseName.Length > 53)
{
throw new ArgumentException("Helm release name must be 53 characters or fewer.", nameof(releaseName));
}
if (!char.IsAsciiLetterOrDigit(releaseName[0]) || !char.IsAsciiLetterOrDigit(releaseName[^1]))
{
throw new ArgumentException("Helm release name must start and end with a lowercase letter or digit.", nameof(releaseName));
}
foreach (var c in releaseName)
{
if (char.IsAsciiLower(c) || char.IsDigit(c) || c == '-')
{
continue;
}
if (char.IsLetter(c) && char.IsUpper(c))
{
throw new ArgumentException("Helm release name must be lowercase and may contain only lowercase letters, digits, and hyphens.", nameof(releaseName));
}
throw new ArgumentException("Helm release name may contain only lowercase letters, digits, and hyphens.", nameof(releaseName));
}
}
Copilot uses AI. Check for mistakes.
Comment on lines +52 to +68
public static IResourceBuilder<KubernetesHelmChartResource> AddHelmChart(
this IResourceBuilder<KubernetesEnvironmentResource> builder,
[ResourceName] string name,
string chartReference,
string chartVersion)
{
ArgumentNullException.ThrowIfNull(builder);
ArgumentException.ThrowIfNullOrEmpty(name);
ArgumentException.ThrowIfNullOrEmpty(chartReference);
ArgumentException.ThrowIfNullOrEmpty(chartVersion);

var environment = builder.Resource;
var resource = new KubernetesHelmChartResource(name, environment)
{
ChartReference = chartReference,
ChartVersion = chartVersion
};
Copy link

Copilot AI Apr 30, 2026

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

AddHelmChart currently accepts any non-empty chartVersion, but elsewhere (HelmChartOptions.WithChartVersion) the repo validates Helm chart versions as strict semantic versions. Consider validating chartVersion similarly here so invalid versions fail fast with a clear ArgumentException rather than surfacing as a helm CLI error during deployment.

Copilot uses AI. Check for mistakes.
Comment on lines +49 to +60
/// <summary>
/// Gets or sets the Helm chart reference. This can be an OCI registry URL
/// (e.g., <c>oci://quay.io/jetstack/charts/cert-manager</c>) or a chart name
/// from an added repository.
/// </summary>
public string? ChartReference { get; set; }

/// <summary>
/// Gets or sets the chart version to install.
/// </summary>
public string? ChartVersion { get; set; }

Copy link

Copilot AI Apr 30, 2026

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

ChartReference and ChartVersion are nullable/settable even though AddHelmChart requires them to be provided. This makes it easy to put the resource into an invalid state (e.g., ChartVersion set to null) and then get a late failure or different behavior at deploy time. Consider making these non-nullable and required (constructor/init-only), or enforce non-null/valid values consistently before running helm.

Copilot uses AI. Check for mistakes.
Comment on lines +162 to +180
var releaseName = chart.ReleaseName ?? chart.Name;
var @namespace = chart.Namespace ?? chart.Name;
var chartRef = chart.ChartReference ?? throw new InvalidOperationException($"Helm chart '{chart.Name}' has no chart reference configured.");
var chartVersion = chart.ChartVersion;

logger.LogInformation(
"Installing Helm chart '{ChartName}' ({ChartRef}:{ChartVersion}) into namespace '{Namespace}'.",
chart.Name, chartRef, chartVersion, @namespace);

var arguments = new StringBuilder();
arguments.Append(CultureInfo.InvariantCulture, $"upgrade --install {releaseName} \"{chartRef}\"");
arguments.Append(CultureInfo.InvariantCulture, $" --namespace {@namespace}");
arguments.Append(" --create-namespace");
arguments.Append(" --wait");

if (!string.IsNullOrEmpty(chartVersion))
{
arguments.Append(CultureInfo.InvariantCulture, $" --version {chartVersion}");
}
Copy link

Copilot AI Apr 30, 2026

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

InstallHelmChartAsync treats ChartVersion as optional (it may be null/empty and then no --version is passed), but AddHelmChart requires a version. This can lead to silently installing 'latest' if ChartVersion is cleared via direct mutation. Either make chartVersion truly optional in the public API/docs, or throw if ChartVersion is missing at deploy time to preserve the API contract.

Copilot uses AI. Check for mistakes.
string value)
{
ArgumentNullException.ThrowIfNull(builder);
ArgumentException.ThrowIfNullOrEmpty(key);
Copy link

Copilot AI Apr 30, 2026

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

WithHelmValue validates the key but not the value. At runtime a null value can be stored in the dictionary and will produce a "key=" assignment in the generated helm arguments, which is hard to diagnose and may not match caller intent. Consider throwing for null values (and possibly validating/escaping quotes/newlines) to keep the generated command line well-formed.

Suggested change
ArgumentException.ThrowIfNullOrEmpty(key);
ArgumentException.ThrowIfNullOrEmpty(key);
ArgumentNullException.ThrowIfNull(value);
Copilot uses AI. Check for mistakes.
@mitchdenny
Copy link
Copy Markdown
Member Author

/deployment-test

@github-actions
Copy link
Copy Markdown
Contributor

github-actions Bot commented May 1, 2026

🚀 Deployment tests starting on PR #16589...

This will deploy to real Azure infrastructure. Results will be posted here when complete.

View workflow run

@github-actions github-actions Bot temporarily deployed to deployment-testing May 1, 2026 00:51 Inactive
@github-actions github-actions Bot temporarily deployed to deployment-testing May 1, 2026 00:51 Inactive
@github-actions github-actions Bot temporarily deployed to deployment-testing May 1, 2026 00:51 Inactive
@github-actions github-actions Bot had a problem deploying to deployment-testing May 1, 2026 00:51 Failure
@github-actions github-actions Bot temporarily deployed to deployment-testing May 1, 2026 00:51 Inactive
@github-actions github-actions Bot temporarily deployed to deployment-testing May 1, 2026 00:51 Inactive
@github-actions github-actions Bot temporarily deployed to deployment-testing May 1, 2026 00:51 Inactive
@github-actions github-actions Bot temporarily deployed to deployment-testing May 1, 2026 00:51 Inactive
@github-actions github-actions Bot temporarily deployed to deployment-testing May 1, 2026 00:51 Inactive
@github-actions github-actions Bot had a problem deploying to deployment-testing May 1, 2026 00:51 Failure
@github-actions github-actions Bot had a problem deploying to deployment-testing May 1, 2026 00:51 Failure
@github-actions github-actions Bot temporarily deployed to deployment-testing May 1, 2026 00:51 Inactive
@github-actions github-actions Bot temporarily deployed to deployment-testing May 1, 2026 00:51 Inactive
@github-actions github-actions Bot had a problem deploying to deployment-testing May 1, 2026 00:51 Failure
@github-actions github-actions Bot temporarily deployed to deployment-testing May 1, 2026 00:51 Inactive
@github-actions github-actions Bot temporarily deployed to deployment-testing May 1, 2026 00:51 Inactive
@github-actions github-actions Bot had a problem deploying to deployment-testing May 1, 2026 00:51 Failure
@github-actions github-actions Bot temporarily deployed to deployment-testing May 1, 2026 00:51 Inactive
@github-actions github-actions Bot temporarily deployed to deployment-testing May 1, 2026 00:51 Inactive
@github-actions github-actions Bot had a problem deploying to deployment-testing May 1, 2026 00:51 Failure
@github-actions github-actions Bot had a problem deploying to deployment-testing May 1, 2026 00:51 Failure
@github-actions github-actions Bot temporarily deployed to deployment-testing May 1, 2026 00:51 Inactive
@github-actions github-actions Bot had a problem deploying to deployment-testing May 1, 2026 00:51 Failure
@github-actions github-actions Bot had a problem deploying to deployment-testing May 1, 2026 02:10 Failure
@github-actions github-actions Bot had a problem deploying to deployment-testing May 1, 2026 02:10 Failure
@github-actions github-actions Bot temporarily deployed to deployment-testing May 1, 2026 02:10 Inactive
@github-actions github-actions Bot temporarily deployed to deployment-testing May 1, 2026 02:10 Inactive
@github-actions github-actions Bot temporarily deployed to deployment-testing May 1, 2026 02:10 Inactive
@github-actions github-actions Bot temporarily deployed to deployment-testing May 1, 2026 02:10 Inactive
@github-actions github-actions Bot temporarily deployed to deployment-testing May 1, 2026 02:10 Inactive
@github-actions github-actions Bot temporarily deployed to deployment-testing May 1, 2026 02:10 Inactive
@github-actions github-actions Bot had a problem deploying to deployment-testing May 1, 2026 02:10 Failure
@github-actions github-actions Bot had a problem deploying to deployment-testing May 1, 2026 02:10 Failure
@github-actions
Copy link
Copy Markdown
Contributor

github-actions Bot commented May 1, 2026

Re-running the failed jobs in the CI workflow for this pull request because 2 jobs were identified as retry-safe transient failures in the CI run attempt.
GitHub was asked to rerun all failed jobs for that attempt, and the rerun is being tracked in the rerun attempt.
The job links below point to the failed attempt jobs that matched the retry-safe transient failure rules.

Matched test failure patterns (1 test)
  • Aspire.Cli.EndToEnd.Tests.KubernetesDeployBasicApiServiceTests.DeployK8sBasicApiService — MCR registry rate limiting (HTTP 403)
@mitchdenny
Copy link
Copy Markdown
Member Author

/deployment-test

@github-actions
Copy link
Copy Markdown
Contributor

github-actions Bot commented May 1, 2026

🚀 Deployment tests starting on PR #16589...

This will deploy to real Azure infrastructure. Results will be posted here when complete.

View workflow run

@github-actions
Copy link
Copy Markdown
Contributor

github-actions Bot commented May 1, 2026

Re-running the failed jobs in the CI workflow for this pull request because 2 jobs were identified as retry-safe transient failures in the CI run attempt.
GitHub was asked to rerun all failed jobs for that attempt, and the rerun is being tracked in the rerun attempt.
The job links below point to the failed attempt jobs that matched the retry-safe transient failure rules.

Matched test failure patterns (1 test)
  • Aspire.Cli.EndToEnd.Tests.JavaCodegenValidationTests.RestoreGeneratesSdkFiles — MCR registry rate limiting (HTTP 403)
@mitchdenny
Copy link
Copy Markdown
Member Author

/deployment-test

@github-actions
Copy link
Copy Markdown
Contributor

github-actions Bot commented May 1, 2026

🚀 Deployment tests starting on PR #16589...

This will deploy to real Azure infrastructure. Results will be posted here when complete.

View workflow run

@mitchdenny
Copy link
Copy Markdown
Member Author

/deployment-test

@github-actions
Copy link
Copy Markdown
Contributor

github-actions Bot commented May 1, 2026

🚀 Deployment tests starting on PR #16589...

This will deploy to real Azure infrastructure. Results will be posted here when complete.

View workflow run

mitchdenny and others added 7 commits May 1, 2026 22:49
Adds KubernetesHelmChartResource and extension methods for installing
external Helm charts into a Kubernetes environment as pipeline steps.

- KubernetesHelmChartResource: models an external chart (OCI/repo ref,
  version, namespace, release name, values)
- AddHelmChart(): creates the resource and registers a helm-install
  pipeline step that runs after the main app Helm deploy
- WithHelmValue(): sets --set values for the chart
- WithNamespace()/WithReleaseName(): configure chart installation

The pipeline step uses IHelmRunner (existing abstraction) to execute
helm upgrade --install with the configured values.

This is the foundation for AddCertManager and other Helm-based
integrations in subsequent PRs.

Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com>
Move KubernetesGatewayExtensions, KubernetesIngressExtensions, and
KubernetesHelmChartExtensions to the Aspire.Hosting namespace to
match the convention used by other hosting extension methods.

Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com>
The chart reference (OCI URL) and --set values need quoting to prevent
shell interpretation issues with special characters like # in values.

Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com>
Adds AddHelmChart extension on AzureKubernetesEnvironmentResource that
delegates to the inner KubernetesEnvironmentResource, matching the
existing pattern for AddIngress and AddGateway.

Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com>
Tests the full aspire deploy flow with an external Helm chart (podinfo)
on a local KinD cluster with a local Docker registry. Verifies:
- aspire deploy installs both the app and the external chart
- podinfo is deployed with 2 replicas as configured via WithHelmValue
- Helm release exists in the podinfo namespace

Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com>
- WithHelmValue: validate value is not null (prevents --set key= args)
- InstallHelmChartAsync: throw if ChartVersion is null at deploy time
  (enforces the contract established by AddHelmChart requiring version)

Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com>
Tests the full flow on a real AKS cluster:
- Creates AKS cluster + ACR via az CLI
- Scaffolds project with AddHelmChart for podinfo (2 replicas)
- Deploys with aspire deploy
- Verifies podinfo has 2 ready replicas
- Verifies podinfo serves HTTP 200 via port-forward
- Verifies Helm release exists

Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com>
@github-actions
Copy link
Copy Markdown
Contributor

github-actions Bot commented May 1, 2026

Re-running the failed jobs in the CI workflow for this pull request because 1 job was identified as retry-safe transient failures in the CI run attempt.
GitHub was asked to rerun all failed jobs for that attempt, and the rerun is being tracked in the rerun attempt.
The job links below point to the failed attempt jobs that matched the retry-safe transient failure rules.

@github-actions
Copy link
Copy Markdown
Contributor

github-actions Bot commented May 1, 2026

🎬 CLI E2E Test Recordings — 77 recordings uploaded (commit 492a176)

View all recordings
Status Test Recording
AddPackageInteractiveWhileAppHostRunningDetached ▶️ View Recording
AddPackageWhileAppHostRunningDetached ▶️ View Recording
AgentCommands_AllHelpOutputs_AreCorrect ▶️ View Recording
AgentInitCommand_DefaultSelection_InstallsSkillOnly ▶️ View Recording
AgentInitCommand_MigratesDeprecatedConfig ▶️ View Recording
AspireAddPackageVersionToDirectoryPackagesProps ▶️ View Recording
AspireUpdateRemovesAppHostPackageVersionFromDirectoryPackagesProps ▶️ View Recording
Banner_DisplayedOnFirstRun ▶️ View Recording
Banner_DisplayedWithExplicitFlag ▶️ View Recording
Banner_NotDisplayedWithNoLogoFlag ▶️ View Recording
CertificatesClean_RemovesCertificates ▶️ View Recording
CertificatesTrust_WithNoCert_CreatesAndTrustsCertificate ▶️ View Recording
CertificatesTrust_WithUntrustedCert_TrustsCertificate ▶️ View Recording
ConfigSetGet_CreatesNestedJsonFormat ▶️ View Recording
CreateAndRunAspireStarterProject ▶️ View Recording
CreateAndRunAspireStarterProjectWithBundle ▶️ View Recording
CreateAndRunEmptyAppHostProject ▶️ View Recording
CreateAndRunJavaEmptyAppHostProject ▶️ View Recording
CreateAndRunJsReactProject ▶️ View Recording
CreateAndRunPythonReactProject ▶️ View Recording
CreateAndRunTypeScriptEmptyAppHostProject ▶️ View Recording
CreateAndRunTypeScriptStarterProject ▶️ View Recording
CreateJavaAppHostWithViteApp ▶️ View Recording
CreateTypeScriptAppHostWithViteApp_UsesConfiguredToolchain ▶️ View Recording
DashboardRunWithOtelTracesReturnsNoTraces ▶️ View Recording
DeployK8sBasicApiService ▶️ View Recording
DeployK8sWithExternalHelmChart ▶️ View Recording
DeployK8sWithGarnet ▶️ View Recording
DeployK8sWithMongoDB ▶️ View Recording
DeployK8sWithMySql ▶️ View Recording
DeployK8sWithPostgres ▶️ View Recording
DeployK8sWithRabbitMQ ▶️ View Recording
DeployK8sWithRedis ▶️ View Recording
DeployK8sWithSqlServer ▶️ View Recording
DeployK8sWithValkey ▶️ View Recording
DeployTypeScriptAppToKubernetes ▶️ View Recording
DescribeCommandResolvesReplicaNames ▶️ View Recording
DescribeCommandShowsRunningResources ▶️ View Recording
DetachFormatJsonProducesValidJson ▶️ View Recording
DetachFormatJsonProducesValidJsonWhenRestartingExistingInstance ▶️ View Recording
DoListStepsShowsPipelineSteps ▶️ View Recording
DocsCommand_RendersInteractiveMarkdownFromLocalSource ▶️ View Recording
DoctorCommand_DetectsDeprecatedAgentConfig ▶️ View Recording
DoctorCommand_TypeScriptAppHostReportsMissingConfiguredToolchain ▶️ View Recording
DoctorCommand_WithSslCertDir_ShowsTrusted ▶️ View Recording
DoctorCommand_WithoutSslCertDir_ShowsPartiallyTrusted ▶️ View Recording
GlobalMigration_HandlesCommentsAndTrailingCommas ▶️ View Recording
GlobalMigration_HandlesMalformedLegacyJson ▶️ View Recording
GlobalMigration_PreservesAllValueTypes ▶️ View Recording
GlobalMigration_SkipsWhenNewConfigExists ▶️ View Recording
GlobalSettings_MigratedFromLegacyFormat ▶️ View Recording
InitTypeScriptAppHost_AugmentsExistingViteRepoAtRoot ▶️ View Recording
InteractiveCSharpInitCreatesExpectedFiles ▶️ View Recording
InvalidAppHostPathWithComments_IsHealedOnRun ▶️ View Recording
LatestCliCanStartStableChannelAppHost ▶️ View Recording
LatestCliCanStartStableChannelTypeScriptAppHost ▶️ View Recording
LegacySettingsMigration_AdjustsRelativeAppHostPath ▶️ View Recording
LogsCommandShowsResourceLogs ▶️ View Recording
OtelLogsReturnsStructuredLogsFromStarterAppCore ▶️ View Recording
PsCommandListsRunningAppHost ▶️ View Recording
PsFormatJsonOutputsOnlyJsonToStdout ▶️ View Recording
PublishWithConfigureEnvFileUpdatesEnvOutput ▶️ View Recording
PublishWithDockerComposeServiceCallbackSucceeds ▶️ View Recording
PublishWithoutOutputPathUsesAppHostDirectoryDefault ▶️ View Recording
RestoreGeneratesSdkFiles ▶️ View Recording
RestoreGeneratesSdkFiles_WithConfiguredToolchain ▶️ View Recording
RestoreRefreshesGeneratedSdkAfterAddingIntegration ▶️ View Recording
RestoreSupportsConfigOnlyHelperPackageAndCrossPackageTypes ▶️ View Recording
RunFromParentDirectory_UsesExistingConfigNearAppHost ▶️ View Recording
SecretCrudOnDotNetAppHost ▶️ View Recording
SecretCrudOnTypeScriptAppHost ▶️ View Recording
StagingChannel_ConfigureAndVerifySettings_ThenSwitchChannels ▶️ View Recording
StartAndWaitForTypeScriptSqlServerAppHostWithNativeAssets ▶️ View Recording
StopAllAppHostsFromAppHostDirectory ▶️ View Recording
StopNonInteractiveSingleAppHost ▶️ View Recording
StopWithNoRunningAppHostExitsSuccessfully ▶️ View Recording
UnAwaitedChainsCompileWithAutoResolvePromises ▶️ View Recording

📹 Recordings uploaded automatically from CI run #25214852417

@mitchdenny
Copy link
Copy Markdown
Member Author

/deployment-test

@github-actions
Copy link
Copy Markdown
Contributor

github-actions Bot commented May 1, 2026

🚀 Deployment tests starting on PR #16589...

This will deploy to real Azure infrastructure. Results will be posted here when complete.

View workflow run

@github-actions
Copy link
Copy Markdown
Contributor

github-actions Bot commented May 1, 2026

Deployment E2E Tests failed — 29 passed, 5 failed, 0 cancelled

View test results and recordings

View workflow run

Test Result Recording
Deployment.EndToEnd-VnetSqlServerInfraDeploymentTests ✅ Passed ▶️ View Recording
Deployment.EndToEnd-AcaCompactNamingDeploymentTests ✅ Passed ▶️ View Recording
Deployment.EndToEnd-KubernetesHelmChartDeploymentTests ✅ Passed ▶️ View Recording
Deployment.EndToEnd-TypeScriptExpressDeploymentTests ✅ Passed ▶️ View Recording
Deployment.EndToEnd-VnetSqlServerConnectivityDeploymentTests ✅ Passed ▶️ View Recording
Deployment.EndToEnd-AzureLogAnalyticsDeploymentTests ✅ Passed ▶️ View Recording
Deployment.EndToEnd-FrontDoorDeploymentTests ✅ Passed ▶️ View Recording
Deployment.EndToEnd-TypeScriptVnetSqlServerInfraDeploymentTests ✅ Passed ▶️ View Recording
Deployment.EndToEnd-AzureEventHubsDeploymentTests ✅ Passed ▶️ View Recording
Deployment.EndToEnd-NspStorageKeyVaultDeploymentTests ✅ Passed ▶️ View Recording
Deployment.EndToEnd-AzureKeyVaultDeploymentTests ✅ Passed ▶️ View Recording
Deployment.EndToEnd-VnetKeyVaultInfraDeploymentTests ✅ Passed ▶️ View Recording
Deployment.EndToEnd-AzureServiceBusDeploymentTests ✅ Passed ▶️ View Recording
Deployment.EndToEnd-AzureContainerRegistryDeploymentTests ✅ Passed ▶️ View Recording
Deployment.EndToEnd-AksVnetInfraDeploymentTests ✅ Passed ▶️ View Recording
Deployment.EndToEnd-VnetStorageBlobConnectivityDeploymentTests ✅ Passed ▶️ View Recording
Deployment.EndToEnd-AcaStarterDeploymentTests ✅ Passed ▶️ View Recording
Deployment.EndToEnd-AksBlazorRedisDeploymentTests ✅ Passed ▶️ View Recording
Deployment.EndToEnd-AcaCustomRegistryDeploymentTests ✅ Passed ▶️ View Recording
Deployment.EndToEnd-AzureStorageDeploymentTests ✅ Passed ▶️ View Recording
Deployment.EndToEnd-KubernetesGatewayTlsDeploymentTests ✅ Passed ▶️ View Recording
Deployment.EndToEnd-AksWithAzureResourcesDeploymentTests ✅ Passed ▶️ View Recording
Deployment.EndToEnd-VnetStorageBlobInfraDeploymentTests ✅ Passed ▶️ View Recording
Deployment.EndToEnd-AksMultipleNodePoolsDeploymentTests ✅ Passed ▶️ View Recording
Deployment.EndToEnd-AksVnetWithAzureResourcesDeploymentTests ✅ Passed ▶️ View Recording
Deployment.EndToEnd-AcaExistingRegistryDeploymentTests ✅ Passed ▶️ View Recording
Deployment.EndToEnd-AppServiceReactDeploymentTests ✅ Passed ▶️ View Recording
Deployment.EndToEnd-AksStarterWithRedisHelmDeploymentTests ✅ Passed ▶️ View Recording
Deployment.EndToEnd-AuthenticationTests ✅ Passed
Deployment.EndToEnd-VnetKeyVaultConnectivityDeploymentTests ❌ Failed ▶️ View Recording
Deployment.EndToEnd-AcaDeploymentErrorOutputTests ❌ Failed ▶️ View Recording
Deployment.EndToEnd-AcaManagedRedisDeploymentTests ❌ Failed ▶️ View Recording
Deployment.EndToEnd-AksStarterDeploymentTests ❌ Failed ▶️ View Recording
Deployment.EndToEnd-AzureAppConfigDeploymentTests ❌ Failed ▶️ View Recording
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

2 participants