The first time I created an Azure Service Fabric cluster, there was one very importing thing I forgot to configure; custom endpoints. Custom endpoints allow you to expose a stateless or statefull service to the outside world. Without this the service is only accessible from inside the datacenter. The annoying thing is that you can only set the custom endpoints when you create your cluster. I couldn’t find a way to change this after the cluster is created. This means that if you forget to add a port, you have to recreate your cluster from scratch. My current solution is to preconfigure a range of ports so I don’t run out of available endpoints while developing. To use one of the available endpoints, you have to configure the port you want to use in the ServiceManifest.xml: <?xml version="1.0" encoding="utf-8"?> <ServiceManifest Name="SampleService" Version="1.0.0" xmlns=&qu