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