rally-openstack/samples/deployments/existing-with-predefined-users.json
Anton Studenov b298a7936d Update deployment samples
* Updated samples of ExistingCloud deployment

Change-Id: Ief7892ae73a8b8a5a0c8f184addac127b0e7fd35
2017-03-22 08:49:56 +00:00

28 lines
772 B
JSON

{
"type": "ExistingCloud",
"creds": {
"openstack": {
"auth_url": "http://example.net:5000/v2.0/",
"region_name": "RegionOne",
"endpoint_type": "public",
"admin": {
"username": "admin",
"password": "pa55word",
"tenant_name": "demo"
},
"users": [
{
"username": "not_an_admin1",
"password": "password",
"tenant_name": "some_tenant"
},
{
"username": "not_an_admin2",
"password": "password2",
"tenant_name": "some_tenant2"
}
]
}
}
}