4d485e1b6b
- Add a `baseProvider` struct with common - Refactor docker, kv(s) and marathon providers (spliting into small pieces) - Add unit tests Signed-off-by: Vincent Demeester <vincent@sbr.pm>
20 lines
507 B
Go
20 lines
507 B
Go
package provider
|
|
|
|
import (
|
|
"github.com/docker/libkv/store"
|
|
"github.com/docker/libkv/store/etcd"
|
|
"github.com/emilevauge/traefik/types"
|
|
)
|
|
|
|
// 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) error {
|
|
provider.StoreType = store.ETCD
|
|
etcd.Register()
|
|
return provider.provide(configurationChan)
|
|
}
|