Service Fabric has its own built in DNS service that will automatically resolve service names to one of the IPs in the cluster running that service. However, is it possible to add manual entries to this DNS server that do not map to a Service Fabric service? For example, if I wanted rediscache.cluster
to resolve to 10.0.100.4
, is that possible?
The alternative would be to make this a public DNS entry, however we'd rather hide our internal network addresses from the public. Thanks!