The configuration is based on oslo-config, while this module lets
each module which want to be configured define the options it need
by itself, and get the limited access to those config variables.
Implements blueprint config-module
Change-Id: Iffbb859da0cb5fb8434bc439320bf6c20f9d39b5
StorageBaseTest should check for issubclass instead of isinstance since
the driver / controller instances are not yet created at that time.
Fixes bug 1154690
Change-Id: I12a76305045cd7dfb8c98ece97e9e6c02e0b7622
This patch follows (or should follow) the specs written in the v1
specification: https://wiki.openstack.org/wiki/Marconi/specs/api/v1
This patch deletes driver_base.py and adds base.py in marconi/storage
package.
Note: Most of this implementations will be tested in further patches
since there's no good way to test these base classes.
Implements blueprint storage-base
Change-Id: Iefa6374635fcf9dd9fc60417d8ed5c306bbc619a
As part of adding the hacking file, this patch adds some files taken
from nova project that will help with the coding standards validation.
Tox now uses run_pep8 for the pep8 test
Change-Id: I0784390a0b13c9694e358563d43e5442592a785e
marconi.common should contain commonly importable utilities.
But Kernel depends on things outside marconi.common, which
results in a recursive dependency if they import anything under
marconi.common.
Change-Id: Ibfeb5abe9fc21a8bcf170d1eddceac44e5abf844
Add just enough code to show how the kernel might use endpoint controllers
as the uniform interface between transport and storage drivers.
Change-Id: Id359986a4e45850266e64b06dae4544b52c8f93c
Implements: blueprint endpoints