Skip to content

Fix Helm cleanup ordering for AKS destroy - #19243

Merged
Sébastien Ros (sebastienros) merged 13 commits into
mainfrom
sebros/fix-aks-helm-destroy
Sep 4, 2026
Merged

Fix Helm cleanup ordering for AKS destroy#19243
Sébastien Ros (sebastienros) merged 13 commits into
mainfrom
sebros/fix-aks-helm-destroy

Conversation

@sebastienros

Copy link
Copy Markdown
Contributor

Description

aspire destroy could fail for AKS deployments when the caller did not already have the cluster selected in their ambient kubeconfig. Helm cleanup ran without first acquiring AKS credentials, while Azure resource-group deletion could start concurrently and race the cluster teardown.

This change adds a destroy-specific AKS credential step that stays separate from the provisioning-dependent deploy credential step. Kubernetes cleanup steps are tagged per environment so the pipeline can order the main Helm release, opted-in external charts, and cert-manager resources after credential acquisition. Azure resource-group deletion now waits for all cluster cleanup to finish. Credential acquisition uses persisted Azure state so retries after partial teardown continue to target the correct cluster.

User-facing usage

AKS deployments can now be destroyed without relying on the caller's current Kubernetes context:

KUBECONFIG="$(mktemp)" aspire destroy \
  --apphost MyApp.AppHost/MyApp.AppHost.csproj \
  --environment my-environment \
  --non-interactive \
  --yes

The regression coverage verifies the complete destroy dependency graph, including multiple AKS environments, and the deployment scenario replaces its ambient kubeconfig before running destroy.

Fixes: #19206

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
      • If yes, have you done a threat model and had a security review?
        • Yes
        • No
    • No

Co-authored-by: Copilot App <223556219+Copilot@users.noreply.github.com>
Copilot AI balanced review requested due to automatic review settings August 11, 2026 18:37
@github-actions

Copy link
Copy Markdown
Contributor

🚀 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 -- 19243

Or

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

@github-actions

This comment has been minimized.

Copilot AI left a comment

Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

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

Pull request overview

Adds AKS destroy ordering so Kubernetes cleanup acquires credentials before Helm/cert-manager teardown and Azure deletion runs last.

Changes:

  • Tags and orders Kubernetes cleanup steps per AKS environment.
  • Adds destroy-specific credential acquisition.
  • Expands dependency-graph and deployment E2E coverage.

Reviewed changes

Copilot reviewed 7 out of 7 changed files in this pull request and generated 1 comment.

Show a summary per file
File Description
AzureKubernetesInfrastructureTests.cs Tests destroy dependency graphs.
AksWithHelmChartDeploymentTests.cs Tests destroy with an empty kubeconfig.
KubernetesHelmChartExtensions.cs Tags external-chart cleanup.
HelmDeploymentEngine.cs Defines destroy tags for Helm cleanup.
CertManagerExtensions.cs Tags issuer cleanup.
AzureKubernetesEnvironmentResource.cs Orders credentials, cleanup, and Azure deletion.
AzureKubernetesEnvironmentResource.AksPipeline.cs Adds destroy credential acquisition.
Suppressed comments (2)

src/Aspire.Hosting.Azure.Kubernetes/AzureKubernetesEnvironmentResource.AksPipeline.cs:312

  • This call cannot complete in a destroy-only graph. Pipeline step creation initializes this resource's ProvisioningTaskCompletionSource, but the new credential step deliberately does not depend on the provisioning step; GetAksCredentialsAsync then calls NameOutputReference.GetValueAsync, which waits on that never-completed task. Read/hydrate the saved AKS name output directly for destroy (without awaiting provisioning) and pass it into the credential routine.
        await GetAksCredentialsAsync(context).ConfigureAwait(false);

src/Aspire.Hosting.Azure.Kubernetes/AzureKubernetesEnvironmentResource.AksPipeline.cs:304

  • Azure state can still exist after the resource-group delete has started because that step uses WaitUntil.Started, and the original Helm failure leaves overall state uncleared. On a retry after AKS has disappeared, this check enters credential acquisition and fails before the idempotent Azure destroy step can report that the group is already gone. Treat a missing AKS cluster/resource group as a successful no-op in the destroy credential step so partial-teardown retries can finish.
        if (string.IsNullOrEmpty(resourceGroupName) || string.IsNullOrEmpty(subscriptionId))

@sebastienros

Copy link
Copy Markdown
Contributor Author

PR Testing Report

PR Information

Artifact Version Verification

  • Expected Commit: 5b9b1eb5af77f842e0b5cd321da14296f46da914
  • Installed Version: 13.6.0-pr.19243.g5b9b1eb5
  • Installed Binary: /var/folders/qn/lq74424935j69rxktvp5tqwc0000gn/T/aspire-pr-test-19243-XXXXXX.9jH8mvMb7i/dogfood/pr-19243/bin/aspire
  • Status: Verified

The CLI was installed from the PR's cli-native-archives-osx-arm64 artifact after that artifact became available.

Changes Analyzed

Files Changed

  • src/Aspire.Hosting.Azure.Kubernetes/AzureKubernetesEnvironmentResource.AksPipeline.cs
  • src/Aspire.Hosting.Azure.Kubernetes/AzureKubernetesEnvironmentResource.cs
  • src/Aspire.Hosting.Kubernetes/CertManagerExtensions.cs
  • src/Aspire.Hosting.Kubernetes/Deployment/HelmDeploymentEngine.cs
  • src/Aspire.Hosting.Kubernetes/KubernetesHelmChartExtensions.cs
  • tests/Aspire.Deployment.EndToEnd.Tests/AksWithHelmChartDeploymentTests.cs
  • tests/Aspire.Hosting.Azure.Kubernetes.Tests/AzureKubernetesInfrastructureTests.cs

Change Categories

  • CLI changes
  • Hosting integration changes
  • Dashboard changes
  • Client/component changes
  • Template changes
  • VS Code extension changes
  • Test changes
  • CI infrastructure changes

Test Scenarios Executed

Scenario 1: PR artifact identity and fresh AKS AppHost

Objective: Verify that testing uses the artifact containing the PR changes and that a fresh AppHost can consume the PR AKS package.

Coverage Type: Artifact and build validation

Status: Passed

Steps:

  1. Installed PR Fix Helm cleanup ordering for AKS destroy #19243 with the repository dogfood installer into an isolated temp directory.
  2. Verified the installed binary reports 13.6.0-pr.19243.g5b9b1eb5.
  3. Created a fresh C# aspire-empty AppHost from the PR package hive.
  4. Added Aspire.Hosting.Azure.Kubernetes version 13.6.0-pr.19243.g5b9b1eb5.
  5. Built and evaluated the AppHost through aspire destroy --list-steps.

Evidence:

  • version.txt
  • install-retry.log
  • scenario-no-state/new-retry.log
  • scenario-no-state/add-aks.log
  • scenario-no-state/list-steps-cleanup.log

Observations:

  • The installed CLI short SHA matches the PR head.
  • The fresh AppHost restored and loaded the PR SDK and AKS integration successfully.

Scenario 2: Safe AKS destroy without deployment state

Objective: Verify that a never-deployed AKS AppHost can be destroyed safely without ambient Kubernetes credentials or Azure deployment state.

Coverage Type: Unhappy path

Status: Passed

Steps:

  1. Created a new empty kubeconfig file and set KUBECONFIG to it.
  2. Ran aspire destroy non-interactively for a unique environment that had never been deployed.
  3. Captured debug-level pipeline output.

Evidence:

  • scenario-no-state/destroy.log

Expected Unhappy-Path Outcome: Credential acquisition, Helm teardown, and Azure deletion should each recognize missing persisted state and complete safely.

Observations:

  • aks-get-credentials-for-destroy-aks reported no Azure deployment state and skipped credential acquisition.
  • destroy-helm-aks reported no Helm deployment state.
  • destroy-azure-azure-environment reported no Azure deployment state.
  • The destroy pipeline completed with 12 of 12 steps successful.

Scenario 3: AKS cluster-cleanup dependency graph

Objective: Verify the dogfood artifact exposes the intended destroy topology for the main release, an opted-in external Helm chart, and cert-manager resources.

Coverage Type: Boundary and topology validation

Status: Passed

Steps:

  1. Added an AKS environment, the podinfo external Helm chart with .WithDestroy(), and a cert-manager issuer to the fresh AppHost.
  2. Ran aspire destroy --list-steps with an empty kubeconfig.
  3. Inspected direct dependencies and environment-scoped cleanup tags.

Evidence:

  • scenario-no-state/apphost.cs
  • scenario-no-state/list-steps-cleanup.log

Observations:

  • Deploy credentials remain isolated behind provision-azure-bicep-resources.
  • aks-get-credentials-for-destroy-aks depends only on destroy-prereq.
  • destroy-helm-aks, helm-uninstall-podinfo, helm-uninstall-cert-manager-chart, and cm-issuer-delete-letsencrypt are tagged kubernetes-destroy-aks and depend on destroy credential acquisition.
  • Cert-manager chart removal also waits for issuer deletion.
  • destroy-azure-azure-environment waits for all four cluster-facing cleanup steps.

Scenario 4: Focused source regression suites

Objective: Verify the PR source passes the affected Azure Kubernetes and Kubernetes hosting test projects.

Coverage Type: Automated regression

Status: Passed

Steps:

  1. Ran Aspire.Hosting.Azure.Kubernetes.Tests excluding quarantined and outerloop tests.
  2. Ran Aspire.Hosting.Kubernetes.Tests excluding quarantined and outerloop tests.

Evidence:

  • source-tests/azure-kubernetes.log
  • source-tests/kubernetes.log

Observations:

  • Azure Kubernetes: 69 passed, 0 failed, 0 skipped.
  • Kubernetes: 270 passed, 0 failed, 0 skipped.

Scenario Not Executed

Live AKS deploy and destroy with empty kubeconfig

Status: Not run

This scenario provisions billable Azure resources and requires explicit approval. No user was available to approve cloud provisioning, so testing stopped short of the live deployment. The updated deployment E2E test remains the appropriate end-to-end validation for this path.

Summary

Scenario Status Notes
PR artifact identity and fresh AKS AppHost Passed Artifact matches PR head
Safe AKS destroy without deployment state Passed 12/12 pipeline steps succeeded
AKS cluster-cleanup dependency graph Passed All cleanup precedes Azure deletion
Focused source regression suites Passed 339 tests passed
Live AKS deploy/destroy Not run Explicit approval required for billable Azure resources

Overall Result

PARTIALLY VERIFIED

All non-provisioning artifact and source scenarios passed. The live AKS deployment scenario is still required to verify the original failure against a real cluster with an empty ambient kubeconfig.

@github-actions

Copy link
Copy Markdown
Contributor

Retrying the failed CI jobs for this pull request from the CI run attempt. The rerun is being tracked in the rerun attempt.

Co-authored-by: Copilot App <223556219+Copilot@users.noreply.github.com>

Copilot-Session: a5fbe5fe-6726-431d-af32-692b54aa1c2b
Copilot AI review requested due to automatic review settings August 11, 2026 22:04
@github-actions

This comment has been minimized.

Copilot AI left a comment

Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

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

Pull request overview

Copilot reviewed 8 out of 8 changed files in this pull request and generated 1 comment.

Co-authored-by: Copilot App <223556219+Copilot@users.noreply.github.com>

Copilot-Session: a5fbe5fe-6726-431d-af32-692b54aa1c2b
Copilot AI review requested due to automatic review settings August 11, 2026 23:14
@github-actions

This comment has been minimized.

Copilot AI left a comment

Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

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

Pull request overview

Copilot reviewed 8 out of 8 changed files in this pull request and generated no new comments.

Suppressed comments (1)

src/Aspire.Hosting.Azure.Kubernetes/AzureKubernetesEnvironmentResource.AksPipeline.cs:344

  • When persisted AKS state is incomplete, returning here leaves KubernetesEnvironment.KubeConfigPath unset, but all tagged cleanup steps still run. External chart uninstall falls back to its configured release name, and cert-manager issuer deletion always invokes kubectl, so both will use the caller's ambient kubeconfig and can delete resources from an unrelated cluster—the behavior this change is intended to eliminate. Fail this prerequisite (or otherwise prevent the downstream cleanup steps from executing) instead of continuing without an isolated kubeconfig.
            context.Logger.LogInformation(
                "No complete Azure deployment state found for AKS environment '{EnvironmentName}'. Skipping credential acquisition.",
                Name);
            return;

@sebastienros
Sébastien Ros (sebastienros) marked this pull request as ready for review August 11, 2026 23:25
@github-actions

Copy link
Copy Markdown
Contributor

Retrying the failed CI jobs for this pull request from the CI run attempt. The rerun is being tracked in the rerun attempt.

Copy link
Copy Markdown
Member

Choose a reason for hiding this comment

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

Two destroy-path correctness issues remain at 3bb5670509: incomplete persisted state can send cleanup to the ambient Kubernetes context, and adopted AKS resources ignore their persisted resource-specific Azure scope. The existing --clear-cache E2E coverage issue is already tracked in a separate thread and was not duplicated.

Co-authored-by: Copilot App <223556219+Copilot@users.noreply.github.com>

Copilot-Session: a5fbe5fe-6726-431d-af32-692b54aa1c2b
Copilot AI review requested due to automatic review settings August 12, 2026 18:26
Co-authored-by: Copilot App <223556219+Copilot@users.noreply.github.com>

Copilot-Session: a5fbe5fe-6726-431d-af32-692b54aa1c2b
@github-actions

This comment has been minimized.

Copilot AI left a comment

Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

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

Pull request overview

Copilot reviewed 7 out of 7 changed files in this pull request and generated 1 comment.

Suppressed comments (1)

src/Aspire.Hosting.Azure.Kubernetes/AzureKubernetesEnvironmentResource.AksPipeline.cs:345

  • The destroy path always uses the app-wide Azure subscription/resource group, but AKS can target an existing cluster in a different scope via AsExistingInResourceGroup or Scope. In that supported scenario, credential acquisition now targets the app resource group (or skips when global Azure state is absent) instead of the cluster scope, so Helm cleanup still fails or reaches the wrong cluster. Apply the same explicit-scope precedence used by the deploy credential path, while using persisted state only as its fallback.
        var resourceGroupName = stateSection.Data["ResourceGroup"]?.ToString();
        var subscriptionId = stateSection.Data["SubscriptionId"]?.ToString();

@github-actions

Copy link
Copy Markdown
Contributor

Retrying the failed CI jobs for this pull request from the CI run attempt. The rerun is being tracked in the rerun attempt.

Co-authored-by: Copilot App <223556219+Copilot@users.noreply.github.com>

Copilot-Session: a5fbe5fe-6726-431d-af32-692b54aa1c2b
Copilot AI review requested due to automatic review settings August 31, 2026 19:15
@github-actions

This comment has been minimized.

Copilot AI left a comment

Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

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

Pull request overview

Copilot reviewed 13 out of 13 changed files in this pull request and generated no new comments.

Suppressed comments (1)

src/Aspire.Hosting.Azure.Kubernetes/AzureKubernetesEnvironmentResource.AksPipeline.cs:428

  • A malformed persisted Scope aborts the credential prerequisite, which also prevents the dependent destroy-azure-* step from deleting the resource group. Scope is optional cached state elsewhere, and the already-validated clusterResourceId contains the exact subscription and resource group, so use it as the safe fallback instead of blocking aggregate destroy.
            catch (Exception ex) when (ex is not OperationCanceledException)
            {
                throw new InvalidOperationException(
                    $"The Azure deployment state for AKS environment '{Name}' contains an invalid scope.",
                    ex);

@github-actions

Copy link
Copy Markdown
Contributor

Retrying the failed CI jobs for this pull request from the CI run attempt. The rerun is being tracked in the rerun attempt.

@mitchdenny Mitch Denny (mitchdenny) left a comment

Copy link
Copy Markdown
Member

Choose a reason for hiding this comment

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

Looks good — the destroy ordering fix is sound: tagging cluster-scoped cleanup steps and making destroy-azure-* depend on them is the right shape, and the destroy-only credential step correctly avoids pulling provisioning into the destroy graph.

Three non-blocking follow-ups:

  1. AzureKubernetesEnvironmentResource.cs uses .Single() for the AzureEnvironmentResource and the destroy-azure-* step. Every other call site in the repo uses SingleOrDefault/FirstOrDefault with a guard — safe in practice since AddAzureProvisioning always adds it, but a mis-shaped model would surface an opaque "Sequence contains no elements".
  2. AksResourceExistsAsync throws on any nonzero az resource list exit. If the resource group itself was deleted out-of-band, that's ResourceGroupNotFound, which fails the credential step and blocks the entire destroy including Azure cleanup. Probably worth treating a missing RG the same as a missing cluster.
  3. The E2E test dropped the helm list -n podinfo assertion, so destroy is now only verified by pipeline success. Understandable given the cluster is gone by then, but it's lost coverage on the WithDestroy() contract.

Co-authored-by: Copilot App <223556219+Copilot@users.noreply.github.com>

Copilot-Session: a5fbe5fe-6726-431d-af32-692b54aa1c2b
Copilot AI review requested due to automatic review settings September 4, 2026 15:15
@sebastienros

Copy link
Copy Markdown
Contributor Author

Addressed the three follow-ups from review 5108517925 in c303691:

  1. Added guarded Azure environment and destroy-step lookups with actionable errors.
  2. Treat (ResourceGroupNotFound) from the scoped AKS existence query as an already-absent cluster while preserving failures for unrelated Azure CLI errors.
  3. Restored E2E coverage for WithDestroy() by asserting that helm-uninstall-podinfo participates in the successful aggregate destroy pipeline.

The Azure Kubernetes suite passes 110/110, and the deployment E2E project builds with no warnings or errors.

@github-actions

github-actions Bot commented Sep 4, 2026

Copy link
Copy Markdown
Contributor

Tests selector

5 / 99 PR test projects · 2 PR jobs · 2 advisory-only targets, from 14 changed files.

Selected PR test projects (5 / 99)

Aspire.Hosting.Azure.Kubernetes.Tests, Aspire.Hosting.Azure.Tests, Aspire.Hosting.CodeGeneration.TypeScript.Tests, Aspire.Hosting.Docker.Tests, Aspire.Hosting.Kubernetes.Tests

Selected PR jobs (2)

extension-e2e, typescript-api-compat

Advisory workflow impact (2)

  • Aspire.Deployment.EndToEnd.Tests (deployment workflow-only)
  • deployment-e2e (schedule/dispatch-only)

How these were chosen — grouped by what changed

🔧 src/Aspire.Hosting.Kubernetes/CertManagerExtensions.cs (changed source)
1 directly: Aspire.Hosting.Kubernetes.Tests
2 via the project graph: Aspire.Hosting.CodeGeneration.TypeScript.Tests, Aspire.Hosting.Docker.Tests

🔧 src/Aspire.Hosting.Azure.Kubernetes/AzureKubernetesEnvironmentResource.AksPipeline.cs (changed source)
2 directly: Aspire.Hosting.Azure.Kubernetes.Tests, Aspire.Hosting.Azure.Tests

🔧 src/Aspire.Hosting.Azure.Kubernetes/AzureKubernetesEnvironmentResource.cs (changed source)
2 directly: Aspire.Hosting.Azure.Kubernetes.Tests, Aspire.Hosting.Azure.Tests

🔧 src/Aspire.Hosting.Kubernetes/Deployment/HelmDeploymentEngine.cs (changed source)
1 directly: Aspire.Hosting.Kubernetes.Tests

🔧 src/Aspire.Hosting.Kubernetes/KubernetesEnvironmentResource.cs (changed source)
1 directly: Aspire.Hosting.Kubernetes.Tests

🔧 src/Aspire.Hosting.Kubernetes/KubernetesHelmChartExtensions.cs (changed source)
1 directly: Aspire.Hosting.Kubernetes.Tests

🧪 tests/Aspire.Deployment.EndToEnd.Tests/AksWithHelmChartDeploymentTests.cs (changed test)
1 directly: Aspire.Deployment.EndToEnd.Tests

🧪 tests/Aspire.Hosting.Azure.Kubernetes.Tests/Aspire.Hosting.Azure.Kubernetes.Tests.csproj (changed test)
1 directly: Aspire.Hosting.Azure.Kubernetes.Tests

🧪 tests/Aspire.Hosting.Azure.Kubernetes.Tests/AzureKubernetesInfrastructureTests.cs (changed test)
1 directly: Aspire.Hosting.Azure.Kubernetes.Tests

🧪 tests/Aspire.Hosting.Kubernetes.Tests/Aspire.Hosting.Kubernetes.Tests.csproj (changed test)
1 directly: Aspire.Hosting.Kubernetes.Tests

🧪 tests/Aspire.Hosting.Kubernetes.Tests/FakeHelmRunner.cs (changed test)
1 directly: Aspire.Hosting.Kubernetes.Tests

🧪 tests/Aspire.Hosting.Kubernetes.Tests/HelmVersionValidatorTests.cs (changed test)
1 directly: Aspire.Hosting.Kubernetes.Tests

🧪 tests/Aspire.Hosting.Kubernetes.Tests/KubernetesDeployTests.cs (changed test)
1 directly: Aspire.Hosting.Kubernetes.Tests

Job reasons

Job Triggered by
deployment-e2e tests/Aspire.Deployment.EndToEnd.Tests/AksWithHelmChartDeploymentTests.cs
• affected project Aspire.Hosting.Azure.Kubernetes
extension-e2e src/Aspire.Hosting.Azure.Kubernetes/AzureKubernetesEnvironmentResource.AksPipeline.cs, src/Aspire.Hosting.Azure.Kubernetes/AzureKubernetesEnvironmentResource.cs, src/Aspire.Hosting.Kubernetes/CertManagerExtensions.cs, src/Aspire.Hosting.Kubernetes/Deployment/HelmDeploymentEngine.cs, src/Aspire.Hosting.Kubernetes/KubernetesEnvironmentResource.cs, src/Aspire.Hosting.Kubernetes/KubernetesHelmChartExtensions.cs
• affected project Aspire.Hosting.Azure.Kubernetes
typescript-api-compat affected project Aspire.Hosting.Azure.Kubernetes

Selection computed for commit c303691.

Copilot AI left a comment

Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

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

🟢 Approval recommended

The destroy graph, persisted-state handling, retry behavior, and real deployment scenario are comprehensively covered.

Review details
  • Files reviewed: 13/13 changed files
  • Comments generated: 0 new
  • Review effort level: Balanced

@github-actions

github-actions Bot commented Sep 4, 2026

Copy link
Copy Markdown
Contributor

Retrying the failed CI jobs for this pull request from the CI run attempt. The rerun is being tracked in the rerun attempt.

@github-actions

github-actions Bot commented Sep 4, 2026

Copy link
Copy Markdown
Contributor

Retrying the failed CI jobs for this pull request from the CI run attempt. The rerun is being tracked in the rerun attempt.

@sebastienros
Sébastien Ros (sebastienros) merged commit ff714af into main Sep 4, 2026
247 of 254 checks passed
@sebastienros
Sébastien Ros (sebastienros) deleted the sebros/fix-aks-helm-destroy branch September 4, 2026 17:52
@microsoft-github-policy-service microsoft-github-policy-service Bot added this to the 13.6 milestone Sep 4, 2026
aspire-repo-bot Bot added a commit to microsoft/aspire.dev that referenced this pull request Sep 4, 2026
Documents the new destroy-specific AKS credential acquisition from
microsoft/aspire#19243, which lets 'aspire destroy' tear down AKS
deployments without relying on the caller's ambient kubectl context.

Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com>
@aspire-repo-bot

Copy link
Copy Markdown
Contributor

Pull request created: #1620

Generated by PR Documentation Check · auto · 63.4 AIC · ⌖ 7.73 AIC · ⊞ 19.7K

@aspire-repo-bot

Copy link
Copy Markdown
Contributor

📝 Documentation has been drafted in microsoft/aspire.dev#1620 targeting release/13.6.

Added a "Clean up resources" section to the AKS deployment doc covering aspire destroy, the new independent AKS credential acquisition, and the non-interactive CI/CD example from the PR body.

  • Modified: src/frontend/src/content/docs/deployment/kubernetes/aks.mdx

Note

This draft PR needs human review before merging.

@github-actions

github-actions Bot commented Sep 4, 2026

Copy link
Copy Markdown
Contributor

⚠️ CI Failure Analysis: Possible Flaky Test(s)

The CI build failed due to test failure(s) that appear unrelated to the PR changes. These may be flaky tests.

Suspected flaky test(s):

  • Aspire.Dashboard.Components.Tests.Pages.MetricsTests.ChangeResource_MeterAndInstrumentNotOnNewResources_InstrumentCleared in job Tests / No-package tests (regular, Aspire.Dashboard.Components.Tests, Dashboard.Components, Dashboard.Components (windows-latest))
    • Error: Microsoft.Data.Sqlite.SqliteException : SQLite Error 1: 'expected 0 columns for '' but got 18'.
    • Stack Trace (first frames):
      at Microsoft.Data.Sqlite.SqliteCommand.PrepareAndEnumerateStatements()+MoveNext()
         at Microsoft.Data.Sqlite.SqliteCommand.GetStatements()+MoveNext()
         at Microsoft.Data.Sqlite.SqliteDataReader.NextResult()
         at Microsoft.Data.Sqlite.SqliteCommand.ExecuteReader(CommandBehavior behavior)
         at Aspire.Dashboard.Otlp.Storage.SqliteTelemetryRepository.MaterializeMetricDimensions(...) in SqliteTelemetryRepository.Metrics.Reads.cs:line 206
      
    • Why likely flaky: Matches prior cause 'dashboard-components-sqlite-column-count-mismatch' (issue [CI Failure] Flaky: MetricsTests.ChangeResource_MeterAndInstrumentNotOnNewResources_InstrumentCleared fails with SQLite 'expected 0 columns' error on Windows #19742, 4 prior occurrences). PR does not touch Dashboard or SQLite storage code.
  • Aspire.Templates.Tests.NewUpAndBuildStandaloneTemplateTests.CanNewAndBuild(templateName: "aspire-ts-cs-starter", extraArgs: "", sdk: Net11, tfm: Net10, error: null) in job Tests / Package tests - Windows (class, Aspire.Templates.Tests, Templates-NewUpAndBuildStandaloneTemplateTests (windows-latest))
    • Error: Aspire.Templates.Tests.ToolCommandException : Expected 0 exit code but got 1: dotnet.exe build ... /p:TreatWarningsAsErrors=true -c Debug /p:AspireUseCliBundle=false
    • Stack Trace (first frames):
      at Aspire.Templates.Tests.CommandResult.EnsureExitCode(...) in CommandResult.cs:line 36
         at Aspire.Templates.Tests.CommandResult.EnsureSuccessful(...) in CommandResult.cs:line 20
         at Aspire.Templates.Tests.AspireProject.BuildAsync(...) in AspireProject.cs:line 347
         at Aspire.Templates.Tests.NewUpAndBuildStandaloneTemplateTests.CanNewAndBuild(...) in NewUpAndBuildStandaloneTemplateTests.cs:line 46
      
    • Why likely flaky: Template build failure on a newly-generated aspire-ts-cs-starter project using preview .NET 11 SDK; unrelated to PR's Kubernetes/Helm hosting changes. No matching test file in PR changed files.

Suggested actions:

  • Re-run the failed CI jobs to confirm if the failure is intermittent
  • If the test continues to fail, consider quarantining it using /quarantine-test <test name> <issue URL>
  • Search existing issues to see if this test is already known to be flaky

You can re-run the failed jobs from the workflow run page.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Projects

None yet

Development

Successfully merging this pull request may close these issues.

aspire destroy fails to uninstall Helm release for AKS deployments

4 participants