A configuration management service with support for secrets.
Go to file
Felipe Monteiro 82e3177404 Successfully creating document.
TODO: clean up dummy test code and move registration of DB tables
to app initialization.

TODO: update documentation

TODO: include unit tests

To create a document:

1) run tox -egenconfig
2) rename the configured file from deckhand.conf.sample to
   deckhand.conf and place it in, e.g., ~/deckhand
3) include in deckhand.conf:

   [database]
   connection = sqlite:///:memory:

   to create an in-memory test db
2017-07-19 22:40:23 +01:00
deckhand Successfully creating document. 2017-07-19 22:40:23 +01:00
etc/deckhand Added logic for establishing DB connection. 2017-07-19 22:06:39 +01:00
.gitignore Initial engine framework 2017-07-17 20:46:49 +01:00
.testr.conf Initial engine framework 2017-07-17 20:46:49 +01:00
AUTHORS Add oslo.log integration 2017-07-06 23:45:09 +01:00
ChangeLog Update README 2017-07-17 21:55:40 +01:00
LICENSE Initial commit 2017-06-16 08:29:03 -07:00
README.rst Update README 2017-07-17 21:55:40 +01:00
requirements.txt Added oslo_context-based context for oslo_db compatibility. 2017-07-18 22:41:15 +01:00
setup.cfg Oslo config integration (#1) 2017-06-26 16:57:50 -07:00
setup.py Oslo config integration (#1) 2017-06-26 16:57:50 -07:00
test-requirements.txt Add jsonschema validation to Deckhand 2017-07-17 20:47:36 +01:00
tox.ini [WIP] Implement documents API 2017-07-17 20:47:36 +01:00

README.rst

Deckhand

A foundational python REST YAML processing engine providing data and secrets management to other platform services.

To run:

$ sudo pip install uwsgi
$ virtualenv -p python3 /var/tmp/deckhand
$ . /var/tmp/deckhand/bin/activate
$ sudo pip install .
$ python setup.py install
$ uwsgi --http :9000 -w deckhand.deckhand --callable deckhand_callable --enable-threads -L