A configuration management service with support for secrets.
Go to file
Mark Burnett bfe930bb8c Add concept of buckets
This enables more declarative delivery of documents from multiple
owners.

- Updates design document:
  - Removes Tombstone concept from the API.
  - Adds and descritbes Bucket concept.
  - Removes planned DELETE endpoints.
  - Adds "purge" endpoint to simplify functional testing.
- Adds functional tests for document crud using buckets.

Change-Id: I7987deb417d34fbd80b888e41e52fabaf330d544
2017-08-23 09:25:27 -05:00
deckhand Add concept of buckets 2017-08-23 09:25:27 -05:00
docs Add concept of buckets 2017-08-23 09:25:27 -05:00
etc/deckhand Add currently necessary oslo namespaces to oslo-config-generator conf file. 2017-07-21 02:20:13 +01:00
tools Replace existing functional tests with Gabbi 2017-08-18 12:24:08 -05:00
.coveragerc Add Deckhand coverage job 2017-08-15 16:11:35 -04:00
.gitignore Add Deckhand coverage job 2017-08-15 16:11:35 -04:00
.gitreview Add gitreview file 2017-08-11 01:22:26 -05:00
.testr.conf [feat] DECKHAND-28: Document pre-validation logic and API integration 2017-08-08 18:52:44 +01:00
AUTHORS [feat] DECKHAND-28: Document pre-validation logic and API integration 2017-08-08 18:52:44 +01:00
LICENSE Initial commit 2017-06-16 08:29:03 -07:00
README.rst [feat] DECKHAND-28: Document pre-validation logic and API integration 2017-08-08 18:52:44 +01:00
requirements.txt Fix flake8 errors 2017-08-14 20:48:14 +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 bandit job to Deckhand 2017-08-16 14:53:38 +01:00
tox.ini Replace existing functional tests with Gabbi 2017-08-18 12:24:08 -05: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.cmd --callable deckhand_callable --enable-threads -L