Doc update

Change-Id: I8d0c6789b5b2d866430a6941460f02c762874b6d
This commit is contained in:
Ilya Shakhat 2016-08-19 17:22:22 +03:00
parent 9cf0b4610c
commit 3bb3507c97
2 changed files with 12 additions and 14 deletions

View File

@ -12,17 +12,15 @@ to execute. Additionally tests may be tuned dynamically in command-line.
Features Features
-------- --------
* User-defined topology via Heat templates
* User-defined topology via Heat templates * Simultaneously test execution on multiple instances
* Simultaneously test execution on multiple instances * Interactive report with stats and charts
* Interactive report with stats and charts * Built-in SLA verification
* Built-in SLA verification
Deployment Requirements Deployment Requirements
----------------------- -----------------------
* Shaker server routable from OpenStack cloud
* Shaker server routable from OpenStack cloud * Admin-user access to OpenStack API is preferable
* Admin-user access to OpenStack API is preferable
Run in Python Environment Run in Python Environment
------------------------- -------------------------
@ -46,7 +44,7 @@ Full list of parameters is available in `documentation <http://pyshaker.readthed
Shaker in Container Shaker in Container
------------------- -------------------
Shaker is available as container a container at Docker Hub at Shaker is available as container at Docker Hub at
`shakhat/shaker <https://hub.docker.com/r/shakhat/shaker/>`_ `shakhat/shaker <https://hub.docker.com/r/shakhat/shaker/>`_
.. code-block:: bash .. code-block:: bash
@ -64,8 +62,7 @@ where:
Links Links
----- -----
* PyPi - https://pypi.python.org/pypi/pyshaker/
* PyPi - https://pypi.python.org/pypi/pyshaker/ * Docker - https://hub.docker.com/r/shakhat/shaker/
* Docker - https://hub.docker.com/r/shakhat/shaker/ * Docs - http://pyshaker.readthedocs.io/
* Docs - http://pyshaker.readthedocs.io/ * Bugtracker - https://launchpad.net/shaker/
* Bugtracker - https://launchpad.net/shaker/

View File

@ -276,6 +276,7 @@ def act():
aggregated = utils.merge_dicts(outputs) aggregated = utils.merge_dicts(outputs)
utils.write_file(json.dumps(aggregated, indent=2), cfg.CONF.output) utils.write_file(json.dumps(aggregated, indent=2), cfg.CONF.output)
LOG.info('Raw output is stored to: %s', cfg.CONF.output)
report.generate_report(aggregated, cfg.CONF.report_template, report.generate_report(aggregated, cfg.CONF.report_template,
cfg.CONF.report, cfg.CONF.subunit, cfg.CONF.book) cfg.CONF.report, cfg.CONF.subunit, cfg.CONF.book)