Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/tsuru/pantera
Pantera is a tool to test the resilience of cloud applications.
https://github.com/tsuru/pantera
Last synced: 3 months ago
JSON representation
Pantera is a tool to test the resilience of cloud applications.
- Host: GitHub
- URL: https://github.com/tsuru/pantera
- Owner: tsuru
- License: bsd-3-clause
- Created: 2013-01-02T13:19:41.000Z (almost 12 years ago)
- Default Branch: master
- Last Pushed: 2015-01-02T13:31:11.000Z (almost 10 years ago)
- Last Synced: 2024-07-11T00:54:48.089Z (4 months ago)
- Language: Python
- Homepage: http://pypi.python.org/pypi/pantera
- Size: 296 KB
- Stars: 33
- Watchers: 20
- Forks: 9
- Open Issues: 2
-
Metadata Files:
- Readme: README.rst
- License: LICENSE
Awesome Lists containing this project
README
.. image:: https://secure.travis-ci.org/tsuru/pantera.png
:target: http://travis-ci.org/tsuru/pantera.. image:: https://pypip.in/version/pantera/badge.svg
:target: https://pypi.python.org/pypi/pantera/
:alt: Latest Versionpantera
=======Pantera is a tool to test the resilience of cloud applications. It's based on
EC2 instances, and process management. It's able to destroy, stop and reboot
instances, and also able to kill process locally and remotely.Installation
------------::
$ pip install pantera
Usage
-----First open the interactive python shell:
::
$ python
Then:
.. code-block:: pycon
>>> from pantera import random_run
>>> random_run("ec2-access-key", "ec2-secret-key")This will run a random action, using the given parameters.
You can also run a specific action:
.. code-block:: pycon
>>> from pantera import run
>>> run("terminate", "ec2-access-key", "ec2-secret-key")To check the list of available actions:
.. code-block:: pycon
>>> from pantera import list_actions
>>> list_actions()