dotnet-operator-sdk
dotnet-operator-sdk copied to clipboard
[feature]: Support for .NET Aspire
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