1
0
mirror of https://github.com/containous/traefik.git synced 2024-10-28 03:30:21 +03:00
traefik/provider/consul.go

21 lines
546 B
Go
Raw Normal View History

package provider
import (
"github.com/containous/traefik/types"
"github.com/docker/libkv/store"
"github.com/docker/libkv/store/consul"
)
2015-09-21 19:05:56 +03:00
// Consul holds configurations of the Consul provider.
type Consul struct {
2016-01-14 00:46:44 +03:00
Kv `mapstructure:",squash"`
2015-09-21 19:05:56 +03:00
}
// Provide allows the provider to provide configurations to traefik
// using the given configuration channel.
func (provider *Consul) Provide(configurationChan chan<- types.ConfigMessage) error {
2016-01-14 00:46:44 +03:00
provider.storeType = store.CONSUL
consul.Register()
return provider.provide(configurationChan)
2015-09-21 19:05:56 +03:00
}