2020-09-15 10:08:03 +00:00
|
|
|
package static
|
|
|
|
|
|
|
|
// Pilot Configuration related to Traefik Pilot.
|
|
|
|
type Pilot struct {
|
2021-03-22 18:18:04 +00:00
|
|
|
Token string `description:"Traefik Pilot token." json:"token,omitempty" toml:"token,omitempty" yaml:"token,omitempty"`
|
|
|
|
Dashboard bool `description:"Enable Traefik Pilot in the dashboard." json:"dashboard,omitempty" toml:"dashboard,omitempty" yaml:"dashboard,omitempty"`
|
|
|
|
}
|
|
|
|
|
|
|
|
// SetDefaults sets the default values.
|
|
|
|
func (p *Pilot) SetDefaults() {
|
|
|
|
p.Dashboard = true
|
2020-09-15 10:08:03 +00:00
|
|
|
}
|