Light weight configuration management using Consul
boom:Important💥 | This project is deprecated and no longer maintained. If you'd like to take it over, please contact me. |
---|
Passport is a command line tool for rendering templates containing information gained from Consul's Service Discovery API and Key/Value database.
Passport is available via pypi and can be installed with easy_install or pip:
pip install passport
usage: passport.py [-h] [--host HOST] [--port PORT] [--datacenter DATACENTER]
{kv,file} path destination
As an example, the following template is stored in the KV database as
templates/memcached/memcached.conf
{% set nodes = ['%s:%s' % (r['Address'], r['ServicePort']) for r in consul.catalog.service('memcached')] %}
[memcached]
servers = {{ ','.join(nodes) }}
Invoking passport will render the file with a list of all memcached nodes to
/etc/memcached.conf
.
passport kv templates/memcached/memcached.conf /etc/memcached.conf
And the output would look something like:
[memcached]
servers = 172.17.0.7:11211,172.17.0.8:11211
Template rendering is done via the Tornado Template engine.
- Add a managed mode where Passport will check for new services on a regular interval and when changes occur, update the rendered template and notify a process using HUP
- Add daemonization for managed mode
- Add the ability to specify pairs of templates/destinations in a single invocation