Merge branch 'master' into eureka
This commit is contained in:
commit
22392daef7
4 changed files with 18 additions and 2 deletions
|
@ -327,6 +327,7 @@ func NewTraefikDefaultPointersConfiguration() *TraefikConfiguration {
|
||||||
defaultMarathon.ExposedByDefault = true
|
defaultMarathon.ExposedByDefault = true
|
||||||
defaultMarathon.Constraints = []types.Constraint{}
|
defaultMarathon.Constraints = []types.Constraint{}
|
||||||
defaultMarathon.DialerTimeout = 60
|
defaultMarathon.DialerTimeout = 60
|
||||||
|
defaultMarathon.KeepAlive = 10
|
||||||
|
|
||||||
// default Consul
|
// default Consul
|
||||||
var defaultConsul provider.Consul
|
var defaultConsul provider.Consul
|
||||||
|
|
|
@ -845,6 +845,12 @@ domain = "marathon.localhost"
|
||||||
# Default: 60
|
# Default: 60
|
||||||
# dialerTimeout = 5
|
# dialerTimeout = 5
|
||||||
|
|
||||||
|
# Set the TCP Keep Alive interval (in seconds) for the Marathon HTTP Client
|
||||||
|
#
|
||||||
|
# Optional
|
||||||
|
# Default: 10
|
||||||
|
#
|
||||||
|
# keepAlive = 10
|
||||||
```
|
```
|
||||||
|
|
||||||
Labels can be used on containers to override default behaviour:
|
Labels can be used on containers to override default behaviour:
|
||||||
|
|
|
@ -35,6 +35,7 @@ type Marathon struct {
|
||||||
MarathonLBCompatibility bool `description:"Add compatibility with marathon-lb labels"`
|
MarathonLBCompatibility bool `description:"Add compatibility with marathon-lb labels"`
|
||||||
TLS *ClientTLS `description:"Enable Docker TLS support"`
|
TLS *ClientTLS `description:"Enable Docker TLS support"`
|
||||||
DialerTimeout time.Duration `description:"Set a non-default connection timeout for Marathon"`
|
DialerTimeout time.Duration `description:"Set a non-default connection timeout for Marathon"`
|
||||||
|
KeepAlive time.Duration `description:"Set a non-default TCP Keep Alive time in seconds"`
|
||||||
Basic *MarathonBasic
|
Basic *MarathonBasic
|
||||||
marathonClient marathon.Marathon
|
marathonClient marathon.Marathon
|
||||||
}
|
}
|
||||||
|
@ -71,10 +72,11 @@ func (provider *Marathon) Provide(configurationChan chan<- types.ConfigMessage,
|
||||||
}
|
}
|
||||||
config.HTTPClient = &http.Client{
|
config.HTTPClient = &http.Client{
|
||||||
Transport: &http.Transport{
|
Transport: &http.Transport{
|
||||||
TLSClientConfig: TLSConfig,
|
|
||||||
DialContext: (&net.Dialer{
|
DialContext: (&net.Dialer{
|
||||||
|
KeepAlive: provider.KeepAlive * time.Second,
|
||||||
Timeout: time.Second * provider.DialerTimeout,
|
Timeout: time.Second * provider.DialerTimeout,
|
||||||
}).DialContext,
|
}).DialContext,
|
||||||
|
TLSClientConfig: TLSConfig,
|
||||||
},
|
},
|
||||||
}
|
}
|
||||||
client, err := marathon.NewClient(config)
|
client, err := marathon.NewClient(config)
|
||||||
|
|
|
@ -510,6 +510,13 @@
|
||||||
# dcosToken = "xxxxxx"
|
# dcosToken = "xxxxxx"
|
||||||
|
|
||||||
|
|
||||||
|
# Set the TCP Keep Alive interval (in seconds) for the Marathon HTTP Client
|
||||||
|
#
|
||||||
|
# Optional
|
||||||
|
# Default: 10
|
||||||
|
#
|
||||||
|
# keepAlive = 10
|
||||||
|
|
||||||
################################################################
|
################################################################
|
||||||
# Mesos configuration backend
|
# Mesos configuration backend
|
||||||
################################################################
|
################################################################
|
||||||
|
|
Loading…
Reference in a new issue