7 references to AddCluster
Aspire.Hosting.Yarp (2)
ConfigurationBuilder\IYarpConfigurationBuilder.cs (2)
143return builder.AddCluster(clusterName, destination); 281_ => builder.AddRoute(path, builder.AddCluster(YarpConfigurationBuilderHelpers.CreateSyntheticClusterName(path, destination), destination)),
Aspire.Hosting.Yarp.Tests (5)
YarpClusterTests.cs (5)
125var cluster = config.AddCluster("test-cluster", (object)"http://localhost:5000"); 141var cluster = config.AddCluster("test-cluster", (object)uri); 172var ex = Assert.Throws<ArgumentException>(() => config.AddCluster("test-cluster", (object)null!)); 239var cluster = config.AddCluster("test-cluster", (object)"http://localhost:5000"); 244var ex = Assert.Throws<ArgumentException>(() => config.AddCluster("test-cluster2", (object)123));