Traefik & Etcd

A Story of KV store & Containers

Store your configuration in Etcd and let Traefik do the rest!

Routing Configuration

See the dedicated section in routing.

Provider Configuration

endpoints

Required, Default="127.0.0.1:2379"

Defines how to access to Etcd.

  1. [providers.etcd]
  2. endpoints = ["127.0.0.1:2379"]
  1. providers:
  2. etcd:
  3. endpoints:
  4. - "127.0.0.1:2379"
  1. --providers.etcd.endpoints=127.0.0.1:2379

rootKey

Defines the root key of the configuration.

Required, Default="traefik"

  1. [providers.etcd]
  2. rootKey = "traefik"
  1. providers:
  2. etcd:
  3. rootKey: "traefik"
  1. --providers.etcd.rootkey=traefik

username

Defines a username to connect with Etcd.

Optional, Default=""

  1. [providers.etcd]
  2. # ...
  3. username = "foo"
  1. providers:
  2. etcd:
  3. # ...
  4. usename: "foo"
  1. --providers.etcd.username=foo

password

Optional, Default=""

Defines a password to connect with Etcd.

  1. [providers.etcd]
  2. # ...
  3. password = "bar"
  1. providers:
  2. etcd:
  3. # ...
  4. password: "bar"
  1. --providers.etcd.password=foo

tls

Optional

tls.ca

Certificate Authority used for the secured connection to Etcd.

  1. [providers.etcd.tls]
  2. ca = "path/to/ca.crt"
  1. providers:
  2. etcd:
  3. tls:
  4. ca: path/to/ca.crt
  1. --providers.etcd.tls.ca=path/to/ca.crt

tls.caOptional

Policy followed for the secured connection with TLS Client Authentication to Etcd. Requires tls.ca to be defined.

  • true: VerifyClientCertIfGiven
  • false: RequireAndVerifyClientCert
  • if tls.ca is undefined NoClientCert
  1. [providers.etcd.tls]
  2. caOptional = true
  1. providers:
  2. etcd:
  3. tls:
  4. caOptional: true
  1. --providers.etcd.tls.caOptional=true

tls.cert

Public certificate used for the secured connection to Etcd.

  1. [providers.etcd.tls]
  2. cert = "path/to/foo.cert"
  3. key = "path/to/foo.key"
  1. providers:
  2. etcd:
  3. tls:
  4. cert: path/to/foo.cert
  5. key: path/to/foo.key
  1. --providers.etcd.tls.cert=path/to/foo.cert
  2. --providers.etcd.tls.key=path/to/foo.key

tls.key

Private certificate used for the secured connection to Etcd.

  1. [providers.etcd.tls]
  2. cert = "path/to/foo.cert"
  3. key = "path/to/foo.key"
  1. providers:
  2. etcd:
  3. tls:
  4. cert: path/to/foo.cert
  5. key: path/to/foo.key
  1. --providers.etcd.tls.cert=path/to/foo.cert
  2. --providers.etcd.tls.key=path/to/foo.key

tls.insecureSkipVerify

If insecureSkipVerify is true, TLS for the connection to Etcd accepts any certificate presented by the server and any host name in that certificate.

  1. [providers.etcd.tls]
  2. insecureSkipVerify = true
  1. providers:
  2. etcd:
  3. tls:
  4. insecureSkipVerify: true
  1. --providers.etcd.tls.insecureSkipVerify=true