Configuration: Dynamic from filesystem¶
You can start Envoy with dynamic configuration by using files that implement the xDS protocol.
When the files are changed on the filesystem, Envoy will automatically update its configuration.
At a minimum, you will need to start Envoy configured with the following sections:
node to uniquely identify the proxy node.
dynamic_resources to tell Envoy where to find its dynamic configuration.
For the given example you will also need two dynamic configuration files:
You can also add an admin section if you wish to monitor Envoy or retrieve stats or configuration information.
The following sections walk through the dynamic configuration provided in the
demo dynamic filesystem configuration file
.
dynamic_resources
¶
The dynamic_resources specify where to load dynamic configuration from.
In this example, the configuration is provided by the yaml
files set below.
3 4 5 6 7 8 9 10 11 |
resources
- listeners¶
The linked lds_config
should be an implementation of a Listener discovery service (LDS).
The following example of a dynamic LDS file
,
configures an HTTP
listener
on port 10000
.
All domains and paths are matched and routed to the service_envoyproxy_io
cluster.
The host
headers are rewritten to www.envoyproxy.io
resources
- clusters¶
The linked cds_config
should be an implementation of a Cluster discovery service (CDS).
In the following example of a dynamic CDS file
,
the example_proxy_cluster
cluster
proxies over TLS
to https://www.envoyproxy.io.