A configuration management service with support for secrets.
Go to file
Felipe Monteiro bbd0292455 Remove oslo_versionedobjects
This commit also updates documentation for launching test app.
2017-07-21 04:22:59 +01:00
deckhand Remove oslo_versionedobjects 2017-07-21 04:22:59 +01:00
etc/deckhand Add currently necessary oslo namespaces to oslo-config-generator conf file. 2017-07-21 02:20:13 +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 Remove oslo_versionedobjects 2017-07-21 04:22:59 +01:00
LICENSE Initial commit 2017-06-16 08:29:03 -07:00
README.rst Remove oslo_versionedobjects 2017-07-21 04:22:59 +01:00
requirements.txt Add currently necessary oslo namespaces to oslo-config-generator conf file. 2017-07-21 02:20:13 +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 generate a configuration file automatically:

$ tox -e genconfig

Resulting deckhand.conf.sample file is output to :path:etc/deckhand/deckhand.conf.sample

Copy the config file to a directory discoverably by oslo.conf:

$ cp etc/deckhand/deckhand.conf.sample ~/deckhand.conf

To setup an in-memory database for testing:

[database]

#
# From oslo.db
#

# The SQLAlchemy connection string to use to connect to the database.
# (string value)
connection = sqlite:///:memory:

To run locally in a development environment:

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