• Traefik & Marathon
    • Configuration Examples
    • Provider Configuration Options
      • basic
      • dcosToken
      • defaultRule
      • dialerTimeout
      • endpoint
      • exposedByDefault
      • constraints
      • forceTaskHostname
      • keepAlive
      • respectReadinessChecks
      • responseHeaderTimeout
      • tls
        • tls.ca
        • tls.caOptional
        • tls.cert
        • tls.key
        • tls.insecureSkipVerify
      • tlsHandshakeTimeout
      • trace
      • watch
    • Routing Configuration Options
      • General
      • Routers
      • Services
      • Middleware
      • TCP
      • Specific Options
        • traefik.enable
        • traefik.marathon.ipadressidx

    Traefik & Marathon

    Traefik can be configured to use Marathon as a provider.

    See also Marathon user guide.

    Configuration Examples

    Configuring Marathon & Deploying / Exposing ApplicationsEnabling the marathon provider

    1. [providers.marathon]
    1. providers:
    2. marathon: {}
    1. --providers.marathon=true

    Attaching labels to marathon applications

    1. {
    2. "id": "/whoami",
    3. "container": {
    4. "type": "DOCKER",
    5. "docker": {
    6. "image": "containous/whoami",
    7. "network": "BRIDGE",
    8. "portMappings": [
    9. {
    10. "containerPort": 80,
    11. "hostPort": 0,
    12. "protocol": "tcp"
    13. }
    14. ]
    15. }
    16. },
    17. "labels": {
    18. "traefik.http.Routers.app.Rule": "PathPrefix(`/app`)"
    19. }
    20. }

    Provider Configuration Options

    Browse the Reference

    If you're in a hurry, maybe you'd rather go through the static and the dynamic configuration references.

    basic

    Optional

    1. [providers.marathon.basic]
    2. httpBasicAuthUser = "foo"
    3. httpBasicPassword = "bar"
    1. providers:
    2. marathon:
    3. basic:
    4. httpBasicAuthUser: foo
    5. httpBasicPassword: bar
    1. --providers.marathon.basic.httpbasicauthuser="foo"
    2. --providers.marathon.basic.httpbasicpassword="bar"

    Enables Marathon basic authentication.

    dcosToken

    Optional

    1. [providers.marathon]
    2. dcosToken = "xxxxxx"
    3. # ...
    1. providers:
    2. marathon:
    3. dcosToken: "xxxxxx"
    4. # ...
    1. --providers.marathon.dcosToken="xxxxxx"

    DCOSToken for DCOS environment.

    If set, it overrides the Authorization header.

    defaultRule

    Optional, Default=Host({{ normalize .Name }})

    1. [providers.marathon]
    2. defaultRule = "Host(`{{ .Name }}.{{ index .Labels \"customLabel\"}}`)"
    3. # ...
    1. providers:
    2. marathon:
    3. defaultRule: "Host(`{{ .Name }}.{{ index .Labels \"customLabel\"}}`)"
    4. # ...
    1. --providers.marathon.defaultRule="Host(`{{ .Name }}.{{ index .Labels \"customLabel\"}}`)"
    2. # ...

    For a given application if no routing rule was defined by a label, it is defined by this defaultRule instead.

    It must be a valid Go template,augmented with the sprig template functions.

    The app ID can be accessed as the Name identifier,and the template has access to all the labels defined on this Marathon application.

    dialerTimeout

    Optional, Default=5s

    1. [providers.marathon]
    2. dialerTimeout = "10s"
    3. # ...
    1. providers:
    2. marathon:
    3. dialerTimeout: "10s"
    4. # ...
    1. --providers.marathon.dialerTimeout=10s

    Overrides DialerTimeout.

    Amount of time the Marathon provider should wait before timing out,when trying to open a TCP connection to a Marathon master.

    Can be provided in a format supported by time.ParseDuration,or directly as a number of seconds.

    endpoint

    Optional, Default=http://127.0.0.1:8080

    1. [providers.marathon]
    2. endpoint = "http://10.241.1.71:8080,10.241.1.72:8080,10.241.1.73:8080"
    3. # ...
    1. providers:
    2. marathon:
    3. endpoint: "http://10.241.1.71:8080,10.241.1.72:8080,10.241.1.73:8080"
    4. # ...
    1. --providers.marathon.endpoint="http://10.241.1.71:8080,10.241.1.72:8080,10.241.1.73:8080"

    Marathon server endpoint.

    You can optionally specify multiple endpoints:

    exposedByDefault

    Optional, Default=true

    1. [providers.marathon]
    2. exposedByDefault = false
    3. # ...
    1. providers:
    2. marathon:
    3. exposedByDefault: false
    4. # ...
    1. --providers.marathon.exposedByDefault=false
    2. # ...

    Exposes Marathon applications by default through Traefik.

    If set to false, applications that don't have a traefik.enable=true label will be ignored from the resulting routing configuration.

    See also Restrict the Scope of Service Discovery.

    constraints

    Optional, Default=""

    1. [providers.marathon]
    2. constraints = "Label(`a.label.name`, `foo`)"
    3. # ...
    1. providers:
    2. marathon:
    3. constraints: "Label(`a.label.name`, `foo`)"
    4. # ...
    1. --providers.marathon.constraints="Label(`a.label.name`, `foo`)"
    2. # ...

    Constraints is an expression that Traefik matches against the application's labels to determine whether to create any route for that application.That is to say, if none of the application's labels match the expression, no route for the application is created.In addition, the expression also matched against the application's constraints, such as described in Marathon constraints.If the expression is empty, all detected applications are included.

    The expression syntax is based on the Label("key", "value"), and LabelRegex("key", "value"), as well as the usual boolean logic.In addition, to match against marathon constraints, the function MarathonConstraint("field:operator:value") can be used, where the field, operator, and value parts are joined together in a single string with the : separator.Constraints Expression Examples

    1. # Includes only applications having a label with key `a.label.name` and value `foo`
    2. constraints = "Label(`a.label.name`, `foo`)"
    1. # Excludes applications having any label with key `a.label.name` and value `foo`
    2. constraints = "!Label(`a.label.name`, `value`)"
    1. # With logical AND.
    2. constraints = "Label(`a.label.name`, `valueA`) && Label(`another.label.name`, `valueB`)"
    1. # With logical OR.
    2. constraints = "Label(`a.label.name`, `valueA`) || Label(`another.label.name`, `valueB`)"
    1. # With logical AND and OR, with precedence set by parentheses.
    2. constraints = "Label(`a.label.name`, `valueA`) && (Label(`another.label.name`, `valueB`) || Label(`yet.another.label.name`, `valueC`))"
    1. # Includes only applications having a label with key `a.label.name` and a value matching the `a.+` regular expression.
    2. constraints = "LabelRegex(`a.label.name`, `a.+`)"
    1. # Includes only applications having a Marathon constraint with field `A`, operator `B`, and value `C`.
    2. constraints = "MarathonConstraint(`A:B:C`)"
    1. # Uses both Marathon constraint and application label with logical operator.
    2. constraints = "MarathonConstraint(`A:B:C`) && Label(`a.label.name`, `value`)"

    See also Restrict the Scope of Service Discovery.

    forceTaskHostname

    Optional, Default=false

    1. [providers.marathon]
    2. forceTaskHostname = true
    3. # ...
    1. providers:
    2. marathon:
    3. forceTaskHostname: true
    4. # ...
    1. --providers.marathon.forceTaskHostname=true
    2. # ...

    By default, a task's IP address (as returned by the Marathon API) is used as backend server if an IP-per-task configuration can be found;otherwise, the name of the host running the task is used.The latter behavior can be enforced by enabling this switch.

    keepAlive

    Optional, Default=10s

    1. [providers.marathon]
    2. keepAlive = "30s"
    3. # ...
    1. providers:
    2. marathon:
    3. keepAlive: "30s"
    4. # ...
    1. --providers.marathon.keepAlive=30s
    2. # ...

    Set the TCP Keep Alive interval for the Marathon HTTP Client.Can be provided in a format supported by time.ParseDuration,or directly as a number of seconds.

    respectReadinessChecks

    Optional, Default=false

    1. [providers.marathon]
    2. respectReadinessChecks = true
    3. # ...
    1. providers:
    2. marathon:
    3. respectReadinessChecks: true
    4. # ...
    1. --providers.marathon.respectReadinessChecks=true
    2. # ...

    Applications may define readiness checks which are probed by Marathon during deployments periodically, and these check results are exposed via the API.Enabling respectReadinessChecks causes Traefik to filter out tasks whose readiness checks have not succeeded.Note that the checks are only valid at deployment times.

    See the Marathon guide for details.

    responseHeaderTimeout

    Optional, Default=60s

    1. [providers.marathon]
    2. responseHeaderTimeout = "66s"
    3. # ...
    1. providers:
    2. marathon:
    3. responseHeaderTimeout: "66s"
    4. # ...
    1. --providers.marathon.responseHeaderTimeout="66s"
    2. # ...

    Overrides ResponseHeaderTimeout.Amount of time the Marathon provider should wait before timing out,when waiting for the first response header from a Marathon master.

    Can be provided in a format supported by time.ParseDuration, or directly as a number of seconds.

    tls

    Optional

    tls.ca

    TODO add description.

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

    tls.caOptional

    TODO add description.

    1. [providers.marathon.tls]
    2. caOptional = true
    1. providers:
    2. marathon:
    3. tls:
    4. caOptional: true
    1. --providers.marathon.tls.caOptional=true

    tls.cert

    TODO add description.

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

    tls.key

    TODO add description.

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

    tls.insecureSkipVerify

    TODO add description.

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

    tlsHandshakeTimeout

    Optional, Default=5s

    1. [providers.marathon]
    2. responseHeaderTimeout = "10s"
    3. # ...
    1. providers:
    2. marathon:
    3. responseHeaderTimeout: "10s"
    4. # ...
    1. --providers.marathon.responseHeaderTimeout="10s"
    2. # ...

    Overrides TLSHandshakeTimeout.

    Amount of time the Marathon provider should wait before timing out,when waiting for the TLS handshake to complete.Can be provided in a format supported by time.ParseDuration,or directly as a number of seconds.

    trace

    Optional, Default=false

    1. [providers.marathon]
    2. trace = true
    3. # ...
    1. providers:
    2. marathon:
    3. trace: true
    4. # ...
    1. --providers.marathon.trace=true
    2. # ...

    Displays additional provider logs (if available).

    watch

    Optional, Default=true

    1. [providers.marathon]
    2. watch = false
    3. # ...
    1. providers:
    2. marathon:
    3. watch: false
    4. # ...
    1. --providers.marathon.watch=false
    2. # ...

    Enables watching for Marathon changes.

    Routing Configuration Options

    General

    Traefik creates, for each Marathon application, a corresponding service and router.

    The Service automatically gets a server per instance of the application,and the router automatically gets a rule defined by defaultRule (if no rule for it was defined in labels).

    Routers

    To update the configuration of the Router automatically attached to the application,add labels starting with traefik.http.routers.{router-name-of-your-choice}. and followed by the option you want to change.For example, to change the routing rule, you could add the label traefik.http.routers.routername.rule=Host(my-domain).

    Every Router parameter can be updated this way.

    Services

    To update the configuration of the Service automatically attached to the container,add labels starting with traefik.http.services.{service-name-of-your-choice}., followed by the option you want to change.For example, to change the passHostHeader behavior, you'd add the label traefik.http.services.servicename.loadbalancer.passhostheader=false.

    Every Service parameter can be updated this way.

    Middleware

    You can declare pieces of middleware using labels starting with traefik.http.middlewares.{middleware-name-of-your-choice}., followed by the middleware type/options.For example, to declare a middleware redirectscheme named my-redirect, you'd write traefik.http.middlewares.my-redirect.redirectscheme.scheme: https.Declaring and Referencing a Middleware

    1. {
    2. ...
    3. "labels": {
    4. "traefik.http.middlewares.my-redirect.redirectscheme.scheme": "https",
    5. "traefik.http.routers.my-container.middlewares": "my-redirect"
    6. }
    7. }

    Conflicts in Declaration

    If you declare multiple middleware with the same name but with different parameters, the middleware fails to be declared.

    More information about available middlewares in the dedicated middlewares section.

    TCP

    You can declare TCP Routers and/or Services using labels.Declaring TCP Routers and Services

    1. {
    2. ...
    3. "labels": {
    4. "traefik.tcp.routers.my-router.rule": "HostSNI(`my-host.com`)",
    5. "traefik.tcp.routers.my-router.tls": "true",
    6. "traefik.tcp.services.my-service.loadbalancer.server.port": "4123"
    7. }
    8. }

    TCP and HTTP

    If you declare a TCP Router/Service, it will prevent Traefik from automatically creating an HTTP Router/Service (as it would by default if no TCP Router/Service is defined).Both a TCP Router/Service and an HTTP Router/Service can be created for the same application, but it has to be done explicitly in the config.

    Specific Options

    traefik.enable

    Setting this option controls whether Traefik exposes the application.It overrides the value of exposedByDefault.

    traefik.marathon.ipadressidx

    If a task has several IP addresses, this option specifies which one, in the list of available addresses, to select.