How to view VM's created using Rally scripts

Asked by Praveen Madire

Trying Openstack Rally to measure the performance of Openstack deployment,I have configured Rally to use existing deployment,tried couple of Nova scenarios boot -and-list.json,my question here is how to see the VM’screated by boot-and-list.json script? I can’t see them in Horizon & nova list show command doesn’t display those images.

Here is the script I am using it :

Script :
{% set flavor_name = "m1.tiny" %}
{
   "NovaServers.boot_and_list_server": [
        {
            "args": {
                "flavor": {
                    "name": "{{flavor_name}}"
                },
                "image": {
                    "name": "cirros"
                },
                "detailed": true
            },
            "runner": {
                "type": "constant",
                "times": 10,
                "concurrency": 1
            },
            "context": {
                "users": {
                    "tenants": 1,
                    "users_per_tenant": 1
                }
            }
        }
    ]

Question information

Language:
English Edit question
Status:
Answered
For:
Rally Edit question
Assignee:
No assignee Edit question
Last query:
Last reply:
Revision history for this message
Andriy Kurilin (andreykurilin) said :
#1

Hi!
Small introduction of how rally task works:
 - validates input task
 - enters contexts(some preparations - creating temporary users, images, vms and so on)
 - launches task scenario
 - exits contexts(clean all resources)

So after task is finished, all rally-resources should be deleted. If you found none removed resource, please file a bug report)

Can you help with this problem?

Provide an answer of your own, or ask Praveen Madire for more information if necessary.

To post a message you must log in.