confd
is a lightweight configuration management tool focused on:
- keeping local configuration files up-to-date using data stored in etcd, consul, dynamodb, redis, zookeeper or env vars and processing template resources.
- reloading applications to pick up new config file changes
- IRC:
#confd
on Freenode - Mailing list: Google Groups
- Website: www.confd.io
confd uses the gb tool to manage dependencies and producing builds.
git clone https://github.com/kelseyhightower/confd.git
cd confd
gb build all
You should now have confd binary in the bin directory:
$ ls bin/
confd
$ git clone https://github.com/kelseyhightower/confd.git
$ cd confd
$ pwd
/Users/kelseyhightower/confd
$ cd src/github.com/kelseyhightower/confd/
$ GOPATH=/Users/kelseyhightower/confd/vendor:/Users/kelseyhightower/confd go build .
You can also produce a static binary too:
GOPATH=/Users/kelseyhightower/confd/vendor:/Users/kelseyhightower/confd go build \
-a -installsuffix cgo -ldflags '-extld ld -extldflags -static' -a -x .
Before we begin be sure to download and install confd.
Check out the docs directory for more docs.