Add sample for the server block migration scenario

Added a sample block migration for an already existing 
live migration scenario.

Change-Id: I7438358052c2408f1447d816a5603605131aee8d
This commit is contained in:
Mike Durnosvistov 2015-04-21 17:01:20 +03:00
parent da5d2bddf4
commit 1bf8e551a2
2 changed files with 42 additions and 0 deletions

View File

@ -0,0 +1,26 @@
{
"NovaServers.boot_and_live_migrate_server": [
{
"args": {
"flavor": {
"name": "m1.nano"
},
"image": {
"name": "^cirros.*uec$"
},
"block_migration": true
},
"runner": {
"type": "constant",
"times": 10,
"concurrency": 2
},
"context": {
"users": {
"tenants": 1,
"users_per_tenant": 1
}
}
}
]
}

View File

@ -0,0 +1,16 @@
---
NovaServers.boot_and_live_migrate_server:
- args:
flavor:
name: m1.nano
image:
name: "^cirros.*uec$"
block_migration: true
runner:
type: constant
times: 10
concurrency: 2
context:
users:
tenants: 1
users_per_tenant: 1