micro/config/source/consul
2019-08-30 16:20:58 +08:00
..
consul.go rename stuff per feedback 2019-06-25 22:41:31 +08:00
options.go rename stuff per feedback 2019-06-25 22:41:31 +08:00
README.md Load consul source 2019-08-30 16:20:58 +08:00
util.go Merge branch 'consul_path_prefix_leading_slash' into dev 2019-06-21 16:53:21 +08:00
watcher.go Source watcher ErrStoppedWatcher and fixed test 2019-08-20 22:32:47 +01:00

Consul Source

The consul source reads config from consul key/values

Consul Format

The consul source expects keys under the default prefix /micro/config

Values are expected to be json

// set database
consul kv put micro/config/database '{"address": "10.0.0.1", "port": 3306}'
// set cache
consul kv put micro/config/cache '{"address": "10.0.0.2", "port": 6379}'

Keys are split on / so access becomes

conf.Get("micro", "config", "database")

New Source

Specify source with data

consulSource := consul.NewSource(
	// optionally specify consul address; default to localhost:8500
	consul.WithAddress("10.0.0.10:8500"),
	// optionally specify prefix; defaults to /micro/config
	consul.WithPrefix("/my/prefix"),
  // optionally strip the provided prefix from the keys, defaults to false
  consul.StripPrefix(true),
)

Load Source

Load the source into config

// Create new config
conf := config.NewConfig()

// Load consul source
conf.Load(consulSource)