2017-04-17 10:50:02 +00:00
|
|
|
package zk
|
|
|
|
|
|
|
|
import (
|
|
|
|
"fmt"
|
|
|
|
|
2018-01-24 16:52:03 +00:00
|
|
|
"github.com/abronan/valkeyrie/store"
|
|
|
|
"github.com/abronan/valkeyrie/store/zookeeper"
|
2017-04-17 10:50:02 +00:00
|
|
|
"github.com/containous/traefik/provider"
|
|
|
|
"github.com/containous/traefik/provider/kv"
|
|
|
|
"github.com/containous/traefik/safe"
|
|
|
|
"github.com/containous/traefik/types"
|
|
|
|
)
|
|
|
|
|
|
|
|
var _ provider.Provider = (*Provider)(nil)
|
|
|
|
|
|
|
|
// Provider holds configurations of the provider.
|
|
|
|
type Provider struct {
|
2017-10-02 08:32:02 +00:00
|
|
|
kv.Provider `mapstructure:",squash" export:"true"`
|
2017-04-17 10:50:02 +00:00
|
|
|
}
|
|
|
|
|
2018-07-11 07:08:03 +00:00
|
|
|
// Init the provider
|
|
|
|
func (p *Provider) Init(constraints types.Constraints) error {
|
|
|
|
err := p.Provider.Init(constraints)
|
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
2017-04-17 10:50:02 +00:00
|
|
|
store, err := p.CreateStore()
|
|
|
|
if err != nil {
|
2018-01-24 16:52:03 +00:00
|
|
|
return fmt.Errorf("failed to Connect to KV store: %v", err)
|
2017-04-17 10:50:02 +00:00
|
|
|
}
|
2018-07-11 07:08:03 +00:00
|
|
|
|
2017-05-11 17:09:06 +00:00
|
|
|
p.SetKVClient(store)
|
2018-07-11 07:08:03 +00:00
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
|
|
|
// Provide allows the zk provider to Provide configurations to traefik
|
|
|
|
// using the given configuration channel.
|
|
|
|
func (p *Provider) Provide(configurationChan chan<- types.ConfigMessage, pool *safe.Pool) error {
|
|
|
|
return p.Provider.Provide(configurationChan, pool)
|
2017-04-17 10:50:02 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// CreateStore creates the KV store
|
|
|
|
func (p *Provider) CreateStore() (store.Store, error) {
|
2017-05-11 17:09:06 +00:00
|
|
|
p.SetStoreType(store.ZK)
|
2017-04-17 10:50:02 +00:00
|
|
|
zookeeper.Register()
|
|
|
|
return p.Provider.CreateStore()
|
|
|
|
}
|