diff --git a/src/frontend/src/content/docs/reference/cli/commands/aspire-add.mdx b/src/frontend/src/content/docs/reference/cli/commands/aspire-add.mdx index 54a47daf5..03afce1ff 100644 --- a/src/frontend/src/content/docs/reference/cli/commands/aspire-add.mdx +++ b/src/frontend/src/content/docs/reference/cli/commands/aspire-add.mdx @@ -26,6 +26,10 @@ The `aspire add` command searches for an integration package and adds it to the +:::note[Integration discovery on prerelease CLI builds] +When you're running a `staging` or `dev` quality CLI (see [`-Quality|--quality`](/reference/cli/install-script/#options)), `aspire add` discovers both stable and prerelease integration packages, because some integrations — such as `Aspire.Hosting.Azure.Kubernetes` — intentionally ship as prerelease even during a stable-shaped staging build. A `release` quality CLI continues to search stable packages only, but can still add a specific prerelease integration version with the `-v, --version` option. +::: + ## Arguments The following arguments are available: @@ -81,3 +85,9 @@ The following options are available: ```bash title="Aspire CLI" aspire add redis --apphost './apphost.mts' ``` + +- Add the **azure-kubernetes** integration from a stable-shaped `staging` quality CLI, where the integration remains prerelease even though most other packages are stable: + + ```bash title="Aspire CLI" + aspire add azure-kubernetes + ```