Merge "Reference the new pre-update/pre-upgrade groups"

This commit is contained in:
Jenkins 2017-06-09 07:58:52 +00:00 committed by Gerrit Code Review
commit e120452093
3 changed files with 18 additions and 1 deletions

View File

@ -70,6 +70,20 @@ Validations that are run after the overcloud deployment finished.
.. include:: validations-post-deployment.rst
Pre Update
~~~~~~~~~~
Validations that are run right before a minor update of the undercloud or overcloud.
.. include:: validations-pre-update.rst
Pre Upgrade
~~~~~~~~~~~
Validations that are run right before a major upgrade of the undercloud or overcloud.
.. include:: validations-pre-upgrade.rst
Writing Validations
-------------------

View File

@ -97,7 +97,8 @@ def build_detail(group, validations):
def setup(app):
# Seed it with the known groups:
groups = set(('prep', 'pre-introspection',
'pre-deployment', 'post-deployment'))
'pre-deployment', 'post-deployment',
'pre-update', 'pre-upgrade'))
validations = []
for validation_path in sorted(glob('validations/*.yaml')):
with open(validation_path) as f:

View File

@ -25,6 +25,8 @@ Existing validations:
validations-pre-introspection-details
validations-pre-deployment-details
validations-post-deployment-details
validations-pre-update-details
validations-pre-upgrade-details
Indices and tables
==================