# TestCluster.StartSiloAsync(TestCluster, int, TestClusterOptions, IReadOnlyList&lt;IConfigurationSource&gt;, bool)

[Type overview](/orleans/docs/api/csharp/microsoft.orleans.testinghost/orleans.testinghost.testcluster/) | [Methods](/orleans/docs/api/csharp/microsoft.orleans.testinghost/orleans.testinghost.testcluster/methods/)

[Source](https://github.com/dotnet/orleans/blob/e4e752cedecc2976811db49802c7a999b1f1c704/src/Orleans.TestingHost/TestCluster.cs)

```csharp
public static Task<SiloHandle> StartSiloAsync(TestCluster cluster, int instanceNumber, TestClusterOptions clusterOptions, IReadOnlyList<IConfigurationSource>? configurationOverrides = null, bool startSiloOnNewPort = false)
```

Start a new silo in the target cluster

### Parameters

- `cluster` (`TestCluster`): The TestCluster in which the silo should be deployed
- `instanceNumber` (`int`): The instance number to deploy
- `clusterOptions` (`TestClusterOptions`): The options to use.
- `configurationOverrides` (`IReadOnlyList<IConfigurationSource>`): Configuration overrides.
- `startSiloOnNewPort` (`bool`): Whether we start this silo on a new port, instead of the default one

### Returns

A handle to the silo deployed
