rally/doc/source/tutorial/step_9_deploying_openstack.rst
Mikhail Dubov b5142f1a01 [Docs] Existing users and other fixes
* Add a tutorial step about the new existing users feature (step 3)
* Move the corresponding feature request to 'implemented' and modify it a bit
* Rename step 2 to "Rally input task format"
* Add tables of contents to the lessons
* Other fixes that make docs more precise

Change-Id: Ic800fdfa3df883f267ddcae2165f804c11699bd0
2015-05-15 11:52:44 +03:00

2.2 KiB

Step 9. Deploying OpenStack from Rally

Along with supporting already existing OpenStack deployments, Rally itself can deploy OpenStack automatically by using one of its deployment engines. Take a look at other deployment configuration file samples. For example, devstack-in-existing-servers.json is a deployment configuration file that tells Rally to deploy OpenStack with Devstack on the existing servers with given credentials:

{
    "type": "DevstackEngine",
    "provider": {
        "type": "ExistingServers",
        "credentials": [{"user": "root", "host": "10.2.0.8"}]
    }
}

You can try to deploy OpenStack in your Virtual Machine using this script. Edit the configuration file with your IP address/user name and run, as usual:

$ rally deployment create --file=samples/deployments/for_deploying_openstack_with_rally/devstack-in-existing-servers.json --name=new-devstack
+---------------------------+----------------------------+--------------+------------------+
|            uuid           |         created_at         |     name     |      status      |
+---------------------------+----------------------------+--------------+------------------+
|     <Deployment UUID>     | 2015-01-10 22:00:28.270941 | new-devstack | deploy->finished |
+---------------------------+----------------------------+--------------+------------------+
Using deployment : <Deployment UUID>