diff options
author | JingLu5 <lvjing5@huawei.com> | 2017-03-08 03:28:27 +0000 |
---|---|---|
committer | JingLu5 <lvjing5@huawei.com> | 2017-03-13 07:16:54 +0000 |
commit | f138b480ea4c9954d107555d7a46ec3d4375653f (patch) | |
tree | bf0c6c68e13491c7e4c40f31db4bb24b43d64060 /ansible/inventory.ini | |
parent | 106eae2d19ca59e27262a7d8c3cd4501507697ff (diff) |
Add CPU pinning support for node context
JIRA: YARDSTICK-573
Since the yardstick framework now has supported an improved node type context,
this patch adds support for VM vcpu pinning ability in the node type context.
It provides several scripts that can be used to configurate the controller and
compute nodes.
Change-Id: If2c6e7b1b85ff78b9d2a5997bf03bdc6877aaf74
Signed-off-by: JingLu5 <lvjing5@huawei.com>
Diffstat (limited to 'ansible/inventory.ini')
-rw-r--r-- | ansible/inventory.ini | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/ansible/inventory.ini b/ansible/inventory.ini new file mode 100644 index 000000000..440e625bd --- /dev/null +++ b/ansible/inventory.ini @@ -0,0 +1,8 @@ +[controller] +host1 ansible_host=10.1.0.50 ansible_user=root ansible_ssh_pass=root +host2 ansible_host=10.1.0.51 ansible_user=root ansible_ssh_pass=root +host3 ansible_host=10.1.0.52 ansible_user=root ansible_ssh_pass=root + +[compute] +host4 ansible_host=10.1.0.53 ansible_user=root ansible_ssh_pass=root +host5 ansible_host=10.1.0.54 ansible_user=root ansible_ssh_pass=root |