consul Stanza
Placement | consul |
The consul
stanza configures the Nomad agent's communication with
Consul for service discovery and key-value integration. When
configured, tasks can register themselves with Consul, and the Nomad cluster can
automatically bootstrap itself.
A default consul
stanza is automatically merged with all Nomad agent
configurations. These sane defaults automatically enable Consul integration if
Consul is detected on the system. This allows for seamless bootstrapping of the
cluster with zero configuration. To put it another way: if you have a Consul
agent running on the same host as the Nomad agent with the default
configuration, Nomad will automatically connect and configure with Consul.
An important requirement is that each Nomad agent talks to a unique Consul agent. Nomad agents should be configured to talk to Consul agents and not Consul servers. If you are observing flapping services, you may have multiple Nomad agents talking to the same Consul agent. As such avoid configuring Nomad to talk to Consul via DNS such as consul.service.consul
consul
Parameters
address
(string: "127.0.0.1:8500")
- Specifies the address to the local Consul agent, given in the formathost:port
. Supports Unix sockets with the format:unix:///tmp/consul/consul.sock
. Will default to theCONSUL_HTTP_ADDR
environment variable if set.allow_unauthenticated
(bool: true)
- Specifies if users submitting jobs to the Nomad server should be required to provide their own Consul token, proving they have access to the service identity policies required by the Consul Connect enabled services listed in the job. This option should be disabled in an untrusted environment.auth
(string: "")
- Specifies the HTTP Basic Authentication information to use for access to the Consul Agent, given in the formatusername:password
.auto_advertise
(bool: true)
- Specifies if Nomad should advertise its services in Consul. The services are named according toserver_service_name
andclient_service_name
. Nomad servers and clients advertise their respective services, each tagged appropriately with eitherhttp
orrpc
tag. Nomad servers also advertise aserf
tagged service.ca_file
(string: "")
- Specifies an optional path to the CA certificate used for Consul communication. This defaults to the system bundle if unspecified. Will default to theCONSUL_CACERT
environment variable if set.cert_file
(string: "")
- Specifies the path to the certificate used for Consul communication. If this is set then you need to also setkey_file
.checks_use_advertise
(bool: false)
- Specifies if Consul health checks should bind to the advertise address. By default, this is the bind address.client_auto_join
(bool: true)
- Specifies if the Nomad clients should automatically discover servers in the same region by searching for the Consul service name defined in theserver_service_name
option. The search occurs if the client is not registered with any servers or it is unable to heartbeat to the leader of the region, in which case it may be partitioned and searches for other servers.client_service_name
(string: "nomad-client")
- Specifies the name of the service in Consul for the Nomad clients.client_http_check_name
(string: "Nomad Client HTTP Check")
- Specifies the HTTP health check name in Consul for the Nomad clients.key_file
(string: "")
- Specifies the path to the private key used for Consul communication. If this is set then you need to also setcert_file
.namespace
(string: "")
- Specifies the Consul namespace used by the Consul integration. If non-empty, this namespace will be used on all Consul API calls and for Consul Connect configurations.server_service_name
(string: "nomad")
- Specifies the name of the service in Consul for the Nomad servers.server_http_check_name
(string: "Nomad Server HTTP Check")
- Specifies the HTTP health check name in Consul for the Nomad servers.server_serf_check_name
(string: "Nomad Server Serf Check")
- Specifies the Serf health check name in Consul for the Nomad servers.server_rpc_check_name
(string: "Nomad Server RPC Check")
- Specifies the RPC health check name in Consul for the Nomad servers.server_auto_join
(bool: true)
- Specifies if the Nomad servers should automatically discover and join other Nomad servers by searching for the Consul service name defined in theserver_service_name
option. This search only happens if the server does not have a leader.share_ssl
(bool: true)
- Specifies whether the Nomad client should share its Consul SSL configuration with Connect Native applications. Includes values ofca_file
,cert_file
,key_file
,ssl
, andverify_ssl
. Does not include the values for the ACLtoken
orauth
. This option should be disabled in environments where Consul ACLs are not enabled.ssl
(bool: false)
- Specifies if the transport scheme should use HTTPS to communicate with the Consul agent. Will default to theCONSUL_HTTP_SSL
environment variable if set.tags
(array<string>: [])
- Specifies optional Consul tags to be registered with the Nomad server and agent services.token
(string: "")
- Specifies the token used to provide a per-request ACL token. This option overrides the Consul Agent's default token. If the token is not set here or on the Consul agent, it will default to Consul's anonymous policy, which may or may not allow writes.verify_ssl
(bool: true)
- Specifies if SSL peer verification should be used when communicating to the Consul API client over HTTPS. Will default to theCONSUL_HTTP_SSL_VERIFY
environment variable if set.
If the local Consul agent is configured and accessible by the Nomad agents, the
Nomad cluster will automatically bootstrap provided
server_auto_join
, client_auto_join
, and auto_advertise
are all enabled
(which is the default).
consul
Examples
Default
This example shows the default Consul integration:
Custom Address and Port
This example shows pointing the Nomad agent at a different Consul address. Note that you should never point directly at a Consul server; always point to a local client. In this example, the Consul server is bound and listening on the node's private IP address instead of localhost, so we use that:
Custom SSL
This example shows configuring custom SSL certificates to communicate with the Consul agent. The Consul agent should be configured to accept certificates similarly, but that is not discussed here:
Consul Namespace
Consul does not allow ACL policies associated with namespaces to use agent
permissions. Nomad requires agent:read
permissions. In order to use the
consul_namespace
feature, Nomad will need a token generated in Consul's
default namespace. That token should be created with agent:read
as well
as a namespace
block with the other relevant permissions for running Nomad
in the intended namespace. The Consul policy below shows an example policy
configuration for a Nomad server: