rally/doc/samples/deployments/devstack-lxc-engine-in-existing-servers.json
Kevin Tsang 631b83a448 Updated documentation of "DummyProvider to "ExistingServers"
ExistingServers replaced DummyProvider in code
a while ago, but documentation was not updated to reflect
the change until now.

Change-Id: Ia2f81ca66c935d386eee191a50f0d792cba5384b
2014-08-29 01:12:51 +03:00

49 lines
1.5 KiB
JSON

{
"type": "MultihostEngine",
"controller": {
"type": "DevstackEngine",
"localrc": {
"MULTI_HOST": "1",
"VIRT_DRIVER": "fake",
"API_RATE_LIMIT": "False",
"ENABLED_SERVICES+": ",-n-cpu",
"SCREEN_LOGDIR": "$DEST/logs/screen"
},
"provider": {
"type": "LxcProvider",
"containers_per_host": 1,
"container_name_prefix": "controller",
"distribution": "ubuntu",
"host_provider": {
"type": "ExistingServers",
"credentials": [{"user": "root", "host": "localhost"}]
}
}
},
"nodes": [
{
"type": "LxcEngine",
"distribution": "ubuntu",
"container_name": "devstack-compute",
"nodes_per_server": 64,
"provider": {
"type": "ExistingServers",
"credentials": [{"user": "root", "host": "localhost"}]
},
"engine": {
"name": "DevstackEngine",
"localrc": {
"VIRT_DRIVER": "fake",
"DATABASE_TYPE": "mysql",
"MYSQL_HOST": "{controller_ip}",
"RABBIT_HOST": "{controller_ip}",
"GLANCE_HOSTPORT": "{controller_ip}:9292",
"API_RATE_LIMIT": "False",
"ENABLED_SERVICES": "n-cpu,n-net",
"SCREEN_LOGDIR": "$DEST/logs/screen"
}
}
}
]
}