traefik/provider/etcd.go

22 lines
618 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/etcd"
)
// Etcd holds configurations of the Etcd provider.
type Etcd struct {
2016-05-03 14:52:14 +00:00
Kv `mapstructure:",squash" description:"go through"`
}
// 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) error {
2016-01-13 21:46:44 +00:00
provider.storeType = store.ETCD
etcd.Register()
return provider.provide(configurationChan, pool)
}