Jump to: navigation, search

Difference between revisions of "Rally/HowTo"

(Run It! first time)
(Available Rally facilities)
 
(93 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]]
+
Here is [https://rally.readthedocs.org/en/latest/tutorial.html Rally Step by Step Guide]
 
 
= Run It!  =
 
 
 
The easiest way to learn how Rally works is to use already existing '''OpenStack''' deployed by '''DevStack'''.
 
So let assume that we have 2 VMs:
 
 
 
  Vm1 - 192.168.1.2 (with Rally & Zipkin)
 
  Vm2 - 192.168.1.3 (with OpenStack deployed by DevStack)
 
 
 
== Preparing ==
 
 
 
1) Installing Rally & Zipkin on Vm1
 
To install Rally and Zipkin on Vm1 use this [[/Rally/installation|instruction]]
 
 
 
2) Installing OpenStack using DevStack on Vm2
 
 
 
  ssh root@192.168.1.3
 
  git clone https://github.com/openstack-dev/devstack.git
 
  cd devstack && ./stack.sh
 
 
 
 
 
== Action! ==
 
 
 
Now we should properly configure task configuration:
 
 
 
base_task.json:
 
 
 
<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