dotnet-operator-sdk icon indicating copy to clipboard operation
dotnet-operator-sdk copied to clipboard

[feature]: Support for .NET Aspire

Open msexxeta opened this issue 5 months ago • 1 comments

Is your feature request related to a problem? Please describe.

No response

Describe the solution you would like

I would love if the project supported .NET Aspire with a hosting package.

I'd imagine something like

var apiService = builder.AddProject<Projects.aspire_ApiService>("apiservice");

builder.AddKubeOps<Projects.aspire_Operator>("operator")
    .WithReference(apiService);

with the goal that I can deploy the whole stack using Aspir8 or the aspire cli in the future and the operator will be able to call the apiService. Ideally I wouldn't have to change anything in the Operator project manually to make this work, Aspire often comes with an opinionated client package for this purpose.

Additional Context

No response

msexxeta avatar Jul 22 '25 10:07 msexxeta