github kelseyhightower/confd v0.6.3

latest releases: v0.16.0, v0.15.0, v0.14.0...
9 years ago

This is a bug fix release:

  • the env backend now uses pattern matching to mimc recursion. It now works just like etcd, you now longer have to list all the keys in the template resource toml file.

For example, instead of having to do this when using the env backend:

[template]
src = "nginx.tmpl"
dest = "/tmp/nginx.conf"
keys = [
  "/nginx/services/a/name",
  "/nginx/services/a/address",
  "/nginx/services/a/shortname",
  "/nginx/services/b/name",
  "/nginx/services/b/address",
  "/nginx/services/b/shortname",
]

You can do this:

[template]
src = "nginx.tmpl"
dest = "/tmp/nginx.conf"
keys = [
  "/nginx/services",
]

Don't miss a new confd release

NewReleases is sending notifications on new releases.