Add missing description tag

Signed-off-by: Emile Vauge <emile@vauge.com>
This commit is contained in:
Emile Vauge 2017-05-11 19:07:45 +02:00
parent d2b204a075
commit 3a4ec19817
No known key found for this signature in database
GPG key ID: D808B4C167352E59
2 changed files with 5 additions and 5 deletions

View file

@ -19,8 +19,8 @@ import (
// Provider holds configuration of the Provider provider. // Provider holds configuration of the Provider provider.
type Provider struct { type Provider struct {
provider.BaseProvider `mapstructure:",squash"` provider.BaseProvider `mapstructure:",squash"`
Endpoint string Endpoint string `description:"Eureka server endpoint"`
Delay string Delay string `description:"Override default configuration time between refresh"`
} }
// Provide allows the eureka provider to provide configurations to traefik // Provide allows the eureka provider to provide configurations to traefik

View file

@ -45,14 +45,14 @@ type Provider struct {
DialerTimeout flaeg.Duration `description:"Set a non-default connection timeout for Marathon"` DialerTimeout flaeg.Duration `description:"Set a non-default connection timeout for Marathon"`
KeepAlive flaeg.Duration `description:"Set a non-default TCP Keep Alive time in seconds"` KeepAlive flaeg.Duration `description:"Set a non-default TCP Keep Alive time in seconds"`
ForceTaskHostname bool `description:"Force to use the task's hostname."` ForceTaskHostname bool `description:"Force to use the task's hostname."`
Basic *Basic Basic *Basic `description:"Enable basic authentication"`
marathonClient marathon.Marathon marathonClient marathon.Marathon
} }
// Basic holds basic authentication specific configurations // Basic holds basic authentication specific configurations
type Basic struct { type Basic struct {
HTTPBasicAuthUser string HTTPBasicAuthUser string `description:"Basic authentication User"`
HTTPBasicPassword string HTTPBasicPassword string `description:"Basic authentication Password"`
} }
type lightMarathonClient interface { type lightMarathonClient interface {