traefik/provider/consul.go

22 lines
627 B
Go
Raw Normal View History

package provider
import (
"github.com/containous/traefik/safe"
"github.com/containous/traefik/types"
"github.com/docker/libkv/store"
"github.com/docker/libkv/store/consul"
)
2015-09-21 16:05:56 +00:00
// Consul holds configurations of the Consul provider.
type Consul struct {
2016-05-24 15:31:50 +00:00
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, pool *safe.Pool, constraints []types.Constraint) error {
2016-01-13 21:46:44 +00:00
provider.storeType = store.CONSUL
consul.Register()
return provider.provide(configurationChan, pool, constraints)
2015-09-21 16:05:56 +00:00
}