1
0
mirror of https://github.com/containous/traefik.git synced 2025-03-15 02:50:12 +03:00

22 lines
596 B
Go
Raw Permalink 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/zookeeper"
)
// Zookepper holds configurations of the Zookepper provider.
type Zookepper struct {
Kv
}
// Provide allows the provider to provide configurations to traefik
// using the given configuration channel.
func (provider *Zookepper) Provide(configurationChan chan<- types.ConfigMessage, pool *safe.Pool) error {
2016-01-13 22:46:44 +01:00
provider.storeType = store.ZK
zookeeper.Register()
return provider.provide(configurationChan, pool)
}