Cluster Configuration

Ok So it works when I use the following code :

var connectionSettings = ConnectionSettings.Create()
.SetDefaultUserCredentials(new UserCredentials(“admin”, “changeit”))
.EnableVerboseLogging();
var esConnexion = EventStoreConnection.Create(connectionSettings, new Uri(“tcp://104.209.128.163:1111”));
//var esConnexion = EventStoreConnection.Create(connectionString).EnableVerboseLogging();

        esConnexion.ConnectAsync().Wait();

How would I go around to make it work with Discover ?

Is it unnecessary ?

What if I wanted to add dynamically extra machines and set up a Dns as I planned initially ?

Omar