traefik/provider/consul.go
2016-01-27 13:56:46 +01:00

21 lines
546 B
Go

package provider
import (
"github.com/docker/libkv/store"
"github.com/docker/libkv/store/consul"
"github.com/emilevauge/traefik/types"
)
// Consul holds configurations of the Consul provider.
type Consul struct {
Kv `mapstructure:",squash"`
}
// Provide allows the provider to provide configurations to traefik
// using the given configuration channel.
func (provider *Consul) Provide(configurationChan chan<- types.ConfigMessage) error {
provider.storeType = store.CONSUL
consul.Register()
return provider.provide(configurationChan)
}