Jump to: navigation, search

Difference between revisions of "Rally/HowTo"

(Available Rally facilities)
 
(95 intermediate revisions by 17 users not shown)
Line 1: Line 1:
  
= Before starting =
+
<big>'''Rally wiki documentation is obsolete.'''</big>
  
Ensure that you properly installed environment and Rally:
+
''Everything moved to https://rally.readthedocs.org''
[[Rally/installation|Rally Installation instruction]]
 
  
= Run It! first time =
+
Here is [https://rally.readthedocs.org/en/latest/tutorial.html Rally Step by Step Guide]
 
 
The easiest way to test this stuff is to use already existing OpenStack '''DevStack''' deployed
 
 
 
 
 
The simplest way to test this stuff is to use FakeEngine (that just retruns
 
 
 
If you would like to run Rally Benchmarks against existing OpenStack Cloud
 
then you should use FakeEngine that will return just endpoints from you config
 
 
 
Input config should look like:
 
 
 
<pre>
 
{
 
  "deploy": {
 
    "engine_name": "FakeEngine",
 
    "cloud_config": {
 
      "identify":
 
      "url": "http://localhost/",
 
      "uri": "http://localhost:500",
 
      "admin_username": "admin",
 
      "admin_password": "admin_pass",
 
    }
 
  },
 
 
 
    "tests": {
 
        "verify": {
 
            "tests_to_run": ["sanity", "snapshot", "smoke"]
 
        },
 
        "benchmark": {
 
            "tests_to_run": {
 
                "nova.servers.test_boot_and_delete_sequentially": [
 
                    {"args": {"amount": 5}, "times": 1, "concurrent": 1},
 
                    {"args": {"amount": 10}, "times": 4, "concurrent": 2},
 
                ]
 
            }
 
        }
 
    }
 
}
 
</pre>
 

Latest revision as of 00:44, 27 February 2015

Rally wiki documentation is obsolete.

Everything moved to https://rally.readthedocs.org

Here is Rally Step by Step Guide