Migrate to Akka.NET Aspire plugin and upgrade to .NET 10#275
Merged
Aaronontheweb merged 2 commits intopetabridge:devfrom Feb 18, 2026
Merged
Conversation
Replace hand-rolled Akka.NET cluster configuration in Aspire (Azure Storage emulator, manual endpoint/env var injection) with the Aaron.Akka.Aspire plugin's AddAkka().WithClustering().WithReference() API backed by Redis discovery. - Upgrade SDK to .NET 10.0.102, TFM to net10.0 - Upgrade Aspire to 13.1.0, Akka.NET to 1.5.60, Hosting/Management to 1.5.59 - Add Aaron.Akka.Aspire.Hosting, Aaron.Akka.Aspire, Aaron.Akka.Discovery.Redis - Replace Azure Storage emulator with Redis container for cluster discovery - Delete AkkaManagementExtensions.cs (fully replaced by plugin) - Implement dual-path networking in AkkaConfiguration.cs: Aspire plugin path (WithAspireClusterBootstrap + WithRedisDiscovery) when Akka:Cluster:Enabled is set, K8s/standalone path (existing ConfigureNetwork) otherwise - K8s deployment path preserved with zero YAML changes
Document Aspire MCP integration and relevant dotnet-skills for Aspire configuration, integration testing, service defaults, and Akka.NET cluster setup.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Summary
Aaron.Akka.Aspireplugin'sAddAkka().WithClustering().WithReference()API backed by Redis discoveryAkkaManagementExtensions.cs— fully replaced by pluginAkkaConfiguration.cs: Aspire plugin path (WithAspireClusterBootstrap+WithRedisDiscovery) whenAkka:Cluster:Enabledis set by the plugin, existing K8s/standalone path otherwiseTest plan
dotnet build DrawTogether.sln— all 8 projects compiledotnet test tests/DrawTogether.Tests— all 8 unit tests passDrawTogether.End2End.Tests)