confd
is a lightweight configuration management tool focused on:
- keeping local configuration files up-to-date using data stored in etcd, consul, dynamodb, redis, vault, zookeeper, aws ssm parameter store or env vars and processing template resources.
- reloading applications to pick up new config file changes
confd
is currently being cleaned up to build on later versions of Go and moving to adopt native support for Go modules. As part of this work the following major changes are being made:
- The
etcd
andetcdv3
backend are going to be merged. etcd v2 has been deprecated and both backend will now use etcdv3 client libraries. - The
cget
,cgets
,cgetv
, andcgetvs
templates function have been removed due to an unmaintained dependencygithub.com/xordataexchange/crypt/encoding/secconf
. We need to rethink encryption in the core project and rely only on the standard library going forward. In the meanwhile these template function will not work and if support is required you will need to stick with an older version of confd.
- IRC:
#confd
on Freenode - Mailing list: Google Groups
- Website: www.confd.io
Go 1.10 is required to build confd, which uses the new vendor directory.
$ mkdir -p $GOPATH/src/github.com/kelseyhightower
$ git clone https://github.com/kelseyhightower/confd.git $GOPATH/src/github.com/kelseyhightower/confd
$ cd $GOPATH/src/github.com/kelseyhightower/confd
$ make
You should now have confd in your bin/
directory:
$ ls bin/
confd
Before we begin be sure to download and install confd.
Check out the docs directory for more docs.