Register a Service Mesh Proxy in a Service Registration

This topic describes how to declare a proxy as a sidecar proxy. Sidecar proxies run on the same node as the single service instance that they handle traffic for. They may be on the same VM or running as a separate container in the same network namespace.

Configuration

Add the connect.sidecar_service block to your service definition file and specify the parameters to configure sidecar proxy behavior. The sidecar_service block is a service definition that can contain most regular service definition fields. Refer to Limitations for information about unsupported service definition fields for sidecar proxies.

Consul treats sidecar proxy service definitions as a root-level service definition. All fields are optional in nested definitions, which default to opinionated settings that are intended to reduce burden of setting up a sidecar proxy.

Minimal Example

To register a service instance with a sidecar, all that’s needed is:

  1. {
  2. "service": {
  3. "name": "web",
  4. "port": 8080,
  5. "connect": { "sidecar_service": {} }
  6. }
  7. }

This will register the web service as normal, but will also register another proxy service with defaults values used.

The above expands out to be equivalent to the following explicit service definitions:

  1. {
  2. "services": [
  3. {
  4. "name": "web",
  5. "port": 8080
  6. },
  7. {
  8. "name": "web-sidecar-proxy",
  9. "port": 20000,
  10. "kind": "connect-proxy",
  11. "checks": [
  12. {
  13. "Name": "Connect Sidecar Listening",
  14. "TCP": "127.0.0.1:20000",
  15. "Interval": "10s"
  16. },
  17. {
  18. "name": "Connect Sidecar Aliasing web",
  19. "alias_service": "web"
  20. }
  21. ],
  22. "proxy": {
  23. "destination_service_name": "web",
  24. "destination_service_id": "web",
  25. "local_service_address": "127.0.0.1",
  26. "local_service_port": 8080
  27. }
  28. }
  29. ]
  30. }

Details on how the defaults are determined are documented below.

Note: Sidecar service registrations are only a shorthand for registering multiple services. Consul will not start up or manage the actual proxy processes for you.

Overridden Example

The following example shows a service definition where some fields are overridden to customize the proxy configuration.

  1. {
  2. "name": "web",
  3. "port": 8080,
  4. "connect": {
  5. "sidecar_service": {
  6. "proxy": {
  7. "upstreams": [
  8. {
  9. "destination_name": "db",
  10. "local_bind_port": 9191
  11. }
  12. ],
  13. "config": {
  14. "handshake_timeout_ms": 1000
  15. }
  16. }
  17. }
  18. }
  19. }

This example customizes the proxy upstreams and some built-in proxy configuration.

Sidecar Service Defaults

The following fields are set by default on a sidecar service registration. With the exceptions noted any field may be overridden explicitly in the connect.sidecar_service definition to customize the proxy registration. The “parent” service refers to the service definition that embeds the sidecar proxy.

Limitations

The following fields are not supported in the connect.sidecar_service block:

  • id - Sidecar services get an ID assigned and it is an error to override this. This ensures the agent can correctly deregister the sidecar service later when the parent service is removed.
  • kind - Kind defaults to connect-proxy and there is currently no way to unset this to make the registration be for a regular non-connect-proxy service.
  • connect.sidecar_service - Service definitions can’t be nested recursively.
  • connect.native - Currently the kind is fixed to connect-proxy and it’s an error to register a connect-proxy that is also service mesh-native.

Lifecycle

Sidecar service registration is mostly a configuration syntax helper to avoid adding lots of boiler plate for basic sidecar options, however the agent does have some specific behavior around their lifecycle that makes them easier to work with.

The agent fixes the ID of the sidecar service to be based on the parent service’s ID. This enables the following behavior.

  • A service instance can only ever have one sidecar service registered.
  • When re-registering via API or reloading from configuration file:
    • If something changes in the nested sidecar service definition, the change will update the current sidecar registration instead of creating a new one.
    • If a service registration removes the nested sidecar_service then the previously registered sidecar for that service will be deregistered automatically.
  • When reloading the configuration files, if a service definition changes its ID, then a new service instance and a new sidecar instance will be registered. The old ones will be removed since they are no longer found in the config files.