traefik/provider/consul.go

21 lines
521 B
Go
Raw Normal View History

package provider
import (
"github.com/docker/libkv/store"
"github.com/docker/libkv/store/consul"
"github.com/emilevauge/traefik/types"
)
2015-09-21 16:05:56 +00:00
// Consul holds configurations of the Consul provider.
type Consul struct {
Kv
2015-09-21 16:05:56 +00:00
}
// 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)
2015-09-21 16:05:56 +00:00
}