Services configuration reference
This topic describes the options you can use to define services for registering them with Consul. Refer to the following topics for usage information:
Configuration model
The following outline shows how to format the configurations in the root service
block. Click on a property name to view details about the configuration.
name
: string | requiredid
: string | optionaladdress
: string | optionalport
: integer | optionaltags
: list of strings | optionalmeta
: object | optionalcustom_meta_key
: string | optional
tagged_addresses
: object | optionalsocket_path
: string | optionalenable_tag_override
: boolean | optionalchecks
: list of objects | optionalkind
: string | optionalproxy
: object | optionalconnect
: object | optionalnative
: boolean | optionalsidecar_service
: object | optional
weights
: object | optionaltoken
: string | required if ACLs are enablednamespace
: string | optional | Enterprise
Specification
This topic provides details about the configuration parameters.
name
Required value that specifies a name for the service. We recommend using valid DNS labels for service definition names for compatibility with external DNSs. The value for this parameter is used as the ID if the id
parameter is not specified.
- Type: string
- Default: none
id
Specifies an ID for the service. Services on the same node must have unique IDs. We recommend specifying unique values if the default name conflicts with other services.
- Type: string
- Default: Value of the
name
field.
address
String value that specifies a service-specific IP address or hostname. If no value is specified, the IP address of the agent node is used by default. There is no service-side validation of this parameter.
- Type: string
- Default: IP address of the agent node
port
Specifies a port number for the service. To improve service discoverability, we recommend specifying the port number, as well as an address in the tagged_addresses
parameter.
- Type: integer
- Default: Port number of the agent
tags
Specifies a list of string values that add service-level labels. Tag values are opaque to Consul. We recommend using valid DNS labels for service definition IDs for compatibility with external DNSs. In the following example, the service is tagged as v2
and primary
:
Consul uses tags as an anti-entropy mechanism to maintain the state of the cluster. You can disable the anti-entropy feature for a service using the enable_tag_override
setting, which enables external agents to modify tags on services in the catalog. Refer to Modify anti-entropy synchronization for additional usage information.
meta
The meta
field contains custom key-value pairs that associate semantic metadata with the service. You can specify up to 64 pairs that meet the following requirements:
- Keys and values must be strings.
- Keys can only contain ASCII characters (
A
-Z
,a
-z
,0
-9
,_
, and-
). - Keys can not have special characters.
- Keys are limited to 128 characters.
- Values are limited to 512 characters.
In the following example, the env
key is set to prod
:
tagged_addresses
The tagged_address
field is an object that configures additional addresses for a node or service. Remote agents and services can communicate with the service using a tagged address as an alternative to the address specified in the address
field. You can configure multiple addresses for a node or service. The following tags are supported:
lan
: IPv4 LAN address where the node or service is accessible.lan_ipv4
: IPv4 LAN address where the node or service is accessible.lan_ipv6
: IPv6 LAN address where the node or service is accessible.virtual
: A fixed address for the instances of a given logical service.wan
: IPv4 WAN address where the node or service is accessible when dialed from a remote data center.wan_ipv4
: IPv4 WAN address where the node or service is accessible when dialed from a remote data center.wan_ipv6
: IPv6 WAN address at which the node or service is accessible when being dialed from a remote data center.
tagged_addresses.lan
Object that specifies either an IPv4 or IPv6 LAN address and port number where the service or node is accessible. You can specify one or more of the following fields:
The field contains the following parameters:
In the following example, the redis
service has an IPv4 LAN address of 192.0.2.10:80
and IPv6 LAN address of [2001:db8:1:2:cafe::1337]:80
:
tagged_addresses.virtual
Object that specifies a fixed IP address and port number that downstream services in a service mesh can use to connect to the service. The virtual
field contains the following parameters:
Virtual addresses are not required to be routable IPs within the network. They are strictly a control plane construct used to provide a fixed address for the instances of a logical service. Egress connections from the proxy to an upstream service go to the IP address of an individual service instance and not the virtual address of the logical service.
If the following conditions are met, connections to virtual addresses are load balanced across available instances of a service, provided the following conditions are satisfied:
- Transparent proxy is enabled for the downstream and upstream services.
- The upstream service is not configured for individual instances to be dialed directly.
In the following example, the downstream services in the mesh can connect to the redis
service at 203.0.113.50
on port 80
:
tagged_addresses.wan
Object that specifies either an IPv4 or IPv6 WAN address and port number where the service or node is accessible from a remote datacenter. You can specify one or more of the following fields:
The field contains the following parameters:
In the following example, services or nodes in remote datacenters can reach the redis
service at 198.51.100.200:80
and [2001:db8:5:6:1337::1eaf]:80
:
socket_path
String value that specifies the path to the service socket. Specify this parameter to expose the service to the mesh if the service listens on a Unix Domain socket.
- Type: string
- Default: none
enable_tag_override
Boolean value that determines if the anti-entropy feature for the service is enabled.
Set to true
to allow external Consul agents modify tags on the services in the Consul catalog. The local Consul agent ignores updated tags during subsequent sync operations.
This parameter only applies to the locally-registered service. If multiple nodes register a service with the same name
, the enable_tag_override
configuration, and all other service configuration items, operate independently.
Refer to Modify anti-entropy synchronization for additional usage information.
- Type: boolean
- Default:
false
checks
The checks
block contains an array of objects that define health checks for the service. Health checks perform several safety functions, such as allowing a web balancer to gracefully remove failing nodes and allowing a database to replace a failed secondary. Refer to Health Check Configuration Reference for information about configuring health checks.
kind
String value that identifies the service as a proxy and determines its role in the service mesh. Do not configure the kind
parameter for non-proxy service instances. Refer to Consul Service Mesh for additional information.
You can specify the following values:
connect-proxy
: Defines the configuration for a service mesh proxy. Refer to Deploy service mesh proxies for details about registering a service as a service mesh proxy.ingress-gateway
: Defines the configuration for an ingress gatewaymesh-gateway
: Defines the configuration for a mesh gatewayterminating-gateway
: Defines the configuration for a terminating gateway
For non-service registration roles, the kind
field has a different context when used to define configuration entries, such as service-defaults
. Refer to the documentation for the configuration entry you want to implement for additional information.
proxy
Object that specifies proxy configurations when the service is configured to operate as a proxy in a service mesh. Do not configure the proxy
parameter for non-proxy service instances. Refer to Service mesh proxies overview for details about registering your service as a service mesh proxy. Refer to kind
for information about the types of proxies you can define. Services that you assign proxy roles to are registered as services in the catalog.
connect
Object that configures a Consul service mesh connection. You should only configure the connect
block of parameters if you are using Consul service mesh. Refer to Consul Service Mesh for additional information.
The following table describes the parameters that you can place in the connect
block:
Parameter | Description | Default |
---|---|---|
native | Boolean value that advertises the service as a native service mesh proxy. Use this parameter to integrate your application with the connect API. Refer to Service Mesh Native App Integration Overview for additional information. If set to true , do not configure a sidecar_service . | false |
sidecar_service | Object that defines a sidecar proxy for the service. Do not configure if native is set to true . Refer to Deploy sidecar services for usage and configuration details. | Refer to Sidecar service defaults. |
weights
Object that configures how a service instance is weighted in a DNS SRV request based on the service's health status. Configuring tells DNS clients to direct more traffic to instances with a higher weight. A use case would be adjusting the weight higher for an instance with large capacity. It could also be used to reduce the load on services with checks in warning
status by favoring passing instances with a higher weight.
You can specify one or more of the following states and configure an integer value indicating its weight:
Larger integer values increase the weight state. Services have the following default weights:
Services in a critical
state are excluded from DNS responses. Services with warning
checks are included in responses by default. Refer to Perform Static DNS Queries for additional information.
In the following example, DNS SRV queries direct more traffic to service instances in a passing
state, while instances in a warning
instance are less favored:
token
String value that specifies the ACL token to present when registering the service if ACLs are enabled. The token is required for the service to interact with the service catalog.
If ACLs and namespaces are enabled, you can register services scoped to the specific namespace
associated with the ACL token in a Consul cluster.
Services registered with a service definition do not inherit the namespace associated with the ACL token specified in the token field. The namespace
and token
parameters must be included in the service definition for the service to be registered to the namespace that the ACL token is scoped to.
- Type: string
- Default: none
namespace
String value that specifies the namespace in which to register the service. Refer Namespaces for additional information.
- Type: string
- Default: none
Multiple service definitions
You can define multiple services in a single definition file in the servcies
block. This enables you register multiple services in a single command. Note that the HTTP API does not support the services
block.
Example definition
The following example includes all possible parameters, but only the top-level service
parameter and its name
parameter are required by default.