traefik/provider/consul.go

36 lines
970 B
Go
Raw Normal View History

package provider
import (
"fmt"
"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
var _ Provider = (*Consul)(nil)
// Consul holds configurations of the Consul provider.
type Consul struct {
2016-06-24 07:58:42 +00:00
Kv `mapstructure:",squash"`
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.Constraints) error {
store, err := provider.CreateStore()
if err != nil {
return fmt.Errorf("Failed to Connect to KV store: %v", err)
}
provider.kvclient = store
return provider.provide(configurationChan, pool, constraints)
}
// CreateStore creates the KV store
func (provider *Consul) CreateStore() (store.Store, error) {
2016-01-13 21:46:44 +00:00
provider.storeType = store.CONSUL
consul.Register()
return provider.createStore()
2015-09-21 16:05:56 +00:00
}