diff options
author | Ross Brattain <ross.b.brattain@intel.com> | 2017-12-22 10:52:13 +0000 |
---|---|---|
committer | Gerrit Code Review <gerrit@opnfv.org> | 2017-12-22 10:52:13 +0000 |
commit | 9bef739e89f3b230c9e0a53c2286a440017ec948 (patch) | |
tree | 35cf9d6b35cb53fa006c047ec52e5d1270adbdc8 /ansible/yardstick-install-inventory.ini | |
parent | 6459403fbd505549f13190a28eeeb15289945850 (diff) | |
parent | 057b1a79717c12eb283baeed94963cda2ff26df8 (diff) |
Merge "Bugfix:proxy env, ansible multinode support"
Diffstat (limited to 'ansible/yardstick-install-inventory.ini')
-rw-r--r-- | ansible/yardstick-install-inventory.ini | 18 |
1 files changed, 17 insertions, 1 deletions
diff --git a/ansible/yardstick-install-inventory.ini b/ansible/yardstick-install-inventory.ini index e2647b033..e276076cc 100644 --- a/ansible/yardstick-install-inventory.ini +++ b/ansible/yardstick-install-inventory.ini @@ -1,4 +1,20 @@ # the group of systems on which to install yardstick # by default just localhost -[yardstick] +[jumphost] localhost ansible_connection=local + +# section below is only due backward compatibility. +# it will be removed later +[yardstick:children] +jumphost + +[yardstick-standalone] +# uncomment hosts below if you would to test yardstick-standalone/sriov scenarios +#yardstick-standalone-node ansible_host=192.168.1.2 +#yardstick-standalone-node-2 ansible_host=192.168.1.2 + +[all:vars] +# incomment credentials below for yardstick-standalone +#ansible_user=root +#ansible_pass=root + |