Document updated on Feb 13, 2019
The DNS SRV
is a market standard used by systems such as Kubernetes, Mesos, Haproxy, Nginx plus, AWS ECS, Linkerd, and more.
To integrate Consul as the Service Discovery or any other DNS SRV
compatible systems you only need to set two keys:
"sd": "dns"
: To set service discovery = DNS SRV"host": []
: The list of all the names providing the resolutionThese keys need to be added in the backend
section of your configuration. The host
key can be skipped if there is another host
key in the root level of the configuration.
For instance:
...
"backend": [
{
"url_pattern": "/foo",
"sd": "dns",
"host": [
"api-catalog.service.consul.srv"
],
"disable_host_sanitize": true
}
]
...
The documentation is only a piece of the help you can get! Whether you are looking for Open Source or Enterprise support, see more support channels that can help you.