Add framework for vitrage-status upgrade check

This commit adds the functionality of vitrage-status CLI for performing
upgrade checks as part of the Stein cycle upgrade-checkers goal.
It only includes a sample check which must be replaced by real checks in
future.

Change-Id: Ib0c880b15a2f99a4db75654b5c41c6f10d9261af
Story: 2003657
Task: 26163
This commit is contained in:
akhiljain23 2018-10-19 12:28:52 +05:30 committed by Matt Riedemann
parent 4bba4573cf
commit 3a83fc8b9d
10 changed files with 200 additions and 0 deletions

11
doc/source/cli/index.rst Normal file
View File

@ -0,0 +1,11 @@
=========================
Vitrage CLI Documentation
=========================
In this section you will find information on Vitrages command line
interface.
.. toctree::
:maxdepth: 1
vitrage-status

View File

@ -0,0 +1,83 @@
==============
vitrage-status
==============
-----------------------------------------
CLI interface for Vitrage status commands
-----------------------------------------
Synopsis
========
::
vitrage-status <category> <command> [<args>]
Description
===========
:program:`vitrage-status` is a tool that provides routines for checking the
status of a Vitrage deployment.
Options
=======
The standard pattern for executing a :program:`vitrage-status` command is::
vitrage-status <category> <command> [<args>]
Run without arguments to see a list of available command categories::
vitrage-status
Categories are:
* ``upgrade``
Detailed descriptions are below:
You can also run with a category argument such as ``upgrade`` to see a list of
all commands in that category::
vitrage-status upgrade
These sections describe the available categories and arguments for
:program:`vitrage-status`.
Upgrade
~~~~~~~
.. _vitrage-status-checks:
``vitrage-status upgrade check``
Performs a release-specific readiness check before restarting services with
new code. For example, missing or changed configuration options,
incompatible object states, or other conditions that could lead to
failures while upgrading.
**Return Codes**
.. list-table::
:widths: 20 80
:header-rows: 1
* - Return code
- Description
* - 0
- All upgrade readiness checks passed successfully and there is nothing
to do.
* - 1
- At least one check encountered an issue and requires further
investigation. This is considered a warning but the upgrade may be OK.
* - 2
- There was an upgrade status check failure that needs to be
investigated. This should be considered something that stops an
upgrade.
* - 255
- An unexpected error occurred.
**History of Checks**
**4.0.0 (Stein)**
* Sample check to be filled in with checks as they are added in Stein.

View File

@ -79,6 +79,13 @@ Developer Guide
contributor/devstack-installation
contributor/configuration
CLI Guide
---------
.. toctree::
:maxdepth: 1
cli/index
Design Documents
----------------

View File

@ -67,6 +67,7 @@ oslo.middleware==3.35.0
oslo.policy==1.34.0
oslo.serialization==2.25.0
oslo.service==1.30.0
oslo.upgradecheck==0.1.1
oslo.utils==3.36.0
oslotest==3.3.0
osprofiler==2.0.0

View File

@ -0,0 +1,13 @@
---
prelude: >
Added new tool ``vitrage-status upgrade check``.
features:
- |
New framework for ``vitrage-status upgrade check`` command is added.
This framework allows adding various checks which can be run before a
Vitrage upgrade to ensure if the upgrade can be performed safely.
upgrade:
- |
Operator can now use new CLI tool ``vitrage-status upgrade check``
to check if Vitrage deployment can be safely upgraded from
N-1 to N release.

View File

@ -27,6 +27,7 @@ oslo.serialization>=2.25.0 # Apache-2.0
oslo.log>=3.37.0 # Apache-2.0
oslo.policy>=1.34.0 # Apache-2.0
oslo.i18n>=3.20.0 # Apache-2.0
oslo.upgradecheck>=0.1.1 # Apache-2.0
pecan>=1.2.1 # BSD
PasteDeploy>=1.5.2 # MIT
Werkzeug>=0.14.1 # BSD License

View File

@ -34,6 +34,7 @@ console_scripts =
vitrage-dbsync = vitrage.cli.storage:dbsync
vitrage-purge-data = vitrage.cli.storage:purge_data
vitrage-snmp-parsing = vitrage.cli.snmp_parsing:main
vitrage-status = vitrage.cli.status:main
vitrage.entity_graph =
networkx = vitrage.graph.driver.networkx_graph:NXGraph

53
vitrage/cli/status.py Normal file
View File

@ -0,0 +1,53 @@
# Copyright (c) 2018 NEC, Corp.
#
# Licensed under the Apache License, Version 2.0 (the "License"); you may
# not use this file except in compliance with the License. You may obtain
# a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
# WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
# License for the specific language governing permissions and limitations
# under the License.
import sys
from oslo_config import cfg
from oslo_upgradecheck import upgradecheck
from vitrage.i18n import _
CONF = cfg.CONF
class Checks(upgradecheck.UpgradeCommands):
"""Contains upgrade checks
Various upgrade checks should be added as separate methods in this class
and added to _upgrade_checks tuple.
"""
def _sample_check(self):
"""This is sample check added to test the upgrade check framework
It needs to be removed after adding any real upgrade check
"""
return upgradecheck.Result(upgradecheck.Code.SUCCESS, 'Sample detail')
_upgrade_checks = (
# Sample check added for now.
# Whereas in future real checks must be added here in tuple
(_('Sample Check'), _sample_check),
)
def main():
return upgradecheck.main(
CONF, project='vitrage', upgrade_command=Checks())
if __name__ == '__main__':
sys.exit(main())

View File

View File

@ -0,0 +1,30 @@
# Copyright (c) 2018 NEC, Corp.
#
# Licensed under the Apache License, Version 2.0 (the "License"); you may
# not use this file except in compliance with the License. You may obtain
# a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
# WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
# License for the specific language governing permissions and limitations
# under the License.
from oslo_upgradecheck.upgradecheck import Code
from vitrage.cli import status
from vitrage.tests import base
class TestUpgradeChecks(base.BaseTest):
def setUp(self):
super(TestUpgradeChecks, self).setUp()
self.cmd = status.Checks()
def test__sample_check(self):
check_result = self.cmd._sample_check()
self.assertEqual(
Code.SUCCESS, check_result.code)