A configuration management service with support for secrets.
Go to file
Felipe Monteiro 00bb92561d DECKHAND-2: Design core Deckhand API framework
This commit implements the core Deckhand API framework.
It does not implement any real API routes. The core
framework is modeled after Drydock's [0].

This commit specifically:

  - implements the core API framework which uses falcon
  - implements errors.py for preliminary errors
  - implements base resource class from which other API
    resources will inherit to build out the API itself
  - implements base API router
  - implements entry-point for kicking off deckhand
  - updates base README.rst with instructions on
  - running and installing -- similar to Drydock's
  - implements dummy API resource for secrets, to
    be fleshed out further in a follow-up commit

[0] https://github.com/att-comdev/drydock
2017-06-27 19:26:51 +01:00
deckhand DECKHAND-2: Design core Deckhand API framework 2017-06-27 19:26:51 +01:00
etc/deckhand Oslo config integration (#1) 2017-06-26 16:57:50 -07:00
.gitignore Oslo config integration (#1) 2017-06-26 16:57:50 -07:00
AUTHORS DECKHAND-2: Design core Deckhand API framework 2017-06-27 19:26:51 +01:00
ChangeLog DECKHAND-2: Design core Deckhand API framework 2017-06-27 19:26:51 +01:00
LICENSE Initial commit 2017-06-16 08:29:03 -07:00
README.rst DECKHAND-2: Design core Deckhand API framework 2017-06-27 19:26:51 +01:00
requirements.txt DECKHAND-2: Design core Deckhand API framework 2017-06-27 19:26:51 +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 DECKHAND-2: Design core Deckhand API framework 2017-06-27 19:26:51 +01:00
tox.ini DECKHAND-2: Design core Deckhand API framework 2017-06-27 19:26:51 +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 --enable-threads -L