From f138b480ea4c9954d107555d7a46ec3d4375653f Mon Sep 17 00:00:00 2001 From: JingLu5 Date: Wed, 8 Mar 2017 03:28:27 +0000 Subject: 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 --- ansible/inventory.ini | 8 ++++++++ 1 file changed, 8 insertions(+) create mode 100644 ansible/inventory.ini (limited to 'ansible/inventory.ini') 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 -- cgit 1.2.3-korg