Common code for writing OpenStack upgrade checks.
Go to file
Ben Nemec a2c3f8b81d Improve config handling
Many projects need a specific config object (usually the global one)
populated for project code that relies on it. Additionally, we want
to make the code used to initialize the object overrideable so projects
can use their existing code for that. The primary benefit is that
project code has sane defaults for config file locations so in many
cases it won't be necessary to explicitly specify the location. A
very simple default implementation is also provided so the module
still works out of the box too.

Change-Id: If8ce7202bd73793688a0446f069bb4e03547c99e
2018-10-02 14:16:13 -04:00
doc/source Improve config handling 2018-10-02 14:16:13 -04:00
oslo_upgradecheck Improve config handling 2018-10-02 14:16:13 -04:00
.coveragerc Get coverage job working 2018-09-13 16:17:56 +00:00
.gitignore Migrate to stestr 2018-09-13 15:50:37 +00:00
.gitreview Initial commit 2018-09-12 17:35:58 +00:00
.mailmap Initial commit 2018-09-12 17:35:58 +00:00
.stestr.conf Add .zuul.yaml and .stestr.conf 2018-09-20 15:41:08 +00:00
.zuul.yaml Add lower-constraints job 2018-09-21 21:36:01 +00:00
CONTRIBUTING.rst Initial commit 2018-09-12 17:35:58 +00:00
HACKING.rst Initial commit 2018-09-12 17:35:58 +00:00
LICENSE Initial commit 2018-09-12 17:35:58 +00:00
README.rst Flesh out readme 2018-09-20 15:41:21 +00:00
babel.cfg Initial commit 2018-09-12 17:35:58 +00:00
lower-constraints.txt Proper requirements specification 2018-09-12 22:39:56 +00:00
requirements.txt Proper requirements specification 2018-09-12 22:39:56 +00:00
setup.cfg Initial commit 2018-09-12 17:35:58 +00:00
setup.py Initial commit 2018-09-12 17:35:58 +00:00
test-requirements.txt Migrate to stestr 2018-09-13 15:50:37 +00:00
tox.ini Modernize tox.ini 2018-09-26 20:51:45 +00:00

README.rst

oslo.upgradecheck

Common code for writing OpenStack upgrade checks

This project contains the common code necessary for writing upgrade checks in OpenStack projects. It includes a module (oslo_upgradecheck.upgradecheck) for the common code as well as an example (oslo_upgradecheck.__main__) of integrating that code into a project.