Reference configurations

The source distribution includes a set of example configuration templates for each of the three major Envoy deployment types:

The goal of this set of example configurations is to demonstrate the full capabilities of Envoy in a complex deployment. All features will not be applicable to all use cases. For full documentation see the configuration reference.

Configuration generator

Envoy configurations can become relatively complicated. At Lyft we use jinja templating to make the configurations easier to create and manage. The source distribution includes a version of the configuration generator that loosely approximates what we use at Lyft. We have also included three example configuration templates for each of the above three scenarios.

To generate the example configurations run the following from the root of the repo:

mkdir -p generated/configs
bazel build //configs:example_configs
tar xvf $PWD/bazel-genfiles/configs/example_configs.tar -C generated/configs

The previous command will produce three fully expanded configurations using some variables defined inside of configgen.py. See the comments inside of configgen.py for detailed information on how the different expansions work.

A few notes about the example configurations:

  • An instance of endpoint discovery service is assumed to be running at discovery.yourcompany.net.
  • DNS for yourcompany.net is assumed to be setup for various things. Search the configuration templates for different instances of this.
  • Tracing is configured for LightStep. To disable this or enable Zipkin <http://zipkin.io> or Datadog <https://datadoghq.com> tracing, delete or change the tracing configuration accordingly.
  • The configuration demonstrates the use of a global rate limiting service. To disable this delete the rate limit configuration.
  • Route discovery service is configured for the service to service reference configuration and it is assumed to be running at rds.yourcompany.net.
  • Cluster discovery service is configured for the service to service reference configuration and it is assumed that be running at cds.yourcompany.net.