Standardize test vars

Move test host vars from the inventory to individual files for each
host. 'ansible_become' has been removed from localhost's vars since it
should be handled on a playbook basis.

Change-Id: I57f17002f6e8877403d3fc00f6eb148f50b80241
This commit is contained in:
Jimmy McCrory 2017-04-25 17:36:33 -07:00
parent 61609d8f9f
commit 6b5813b553
4 changed files with 16 additions and 4 deletions

View File

@ -0,0 +1,4 @@
---
ansible_host: 10.1.0.2
ansible_become: True
ansible_user: root

View File

@ -0,0 +1,4 @@
---
ansible_host: 10.1.0.3
ansible_become: True
ansible_user: root

View File

@ -0,0 +1,4 @@
---
ansible_host: 10.1.0.4
ansible_become: True
ansible_user: root

View File

@ -1,8 +1,8 @@
[all]
localhost ansible_become=True
container1 ansible_host=10.1.0.2 ansible_become=True ansible_user=root
container2 ansible_host=10.1.0.3 ansible_become=True ansible_user=root
container3 ansible_host=10.1.0.4 ansible_become=True ansible_user=root
localhost
container1
container2
container3
[galera_all]
container1