21 lines
613 B
Go
21 lines
613 B
Go
package provider
|
|
|
|
import (
|
|
"github.com/containous/traefik/safe"
|
|
"github.com/containous/traefik/types"
|
|
"github.com/docker/libkv/store"
|
|
"github.com/docker/libkv/store/etcd"
|
|
)
|
|
|
|
// Etcd holds configurations of the Etcd provider.
|
|
type Etcd struct {
|
|
Kv
|
|
}
|
|
|
|
// Provide allows the provider to provide configurations to traefik
|
|
// using the given configuration channel.
|
|
func (provider *Etcd) Provide(configurationChan chan<- types.ConfigMessage, pool *safe.Pool, constraints []types.Constraint) error {
|
|
provider.storeType = store.ETCD
|
|
etcd.Register()
|
|
return provider.provide(configurationChan, pool, constraints)
|
|
}
|