aboutsummaryrefslogtreecommitdiffstats
path: root/resources/ansible_roles/qtip-generator/files/storage/templates/hosts
blob: 49920006ac0e9c7fc1b5ad4194b79cf73a1f474c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
{% raw %}
localhost   ansible_connection=local

[{{ installer_group[installer_type] }}]
{{ installer_host }}

[SUT:children]   # system under test
compute

[node-groups:children]
{% for group in hosts|sort %}
{{ group }}
{% endfor %}

[node-groups:vars]
ansible_ssh_common_args=-F ./ssh.cfg

{% for group in hosts|sort %}
[{{ group }}]
{% for host in hosts[group]|sort %}
{{ host }}
{% endfor %}

{% endfor %}
{% endraw %}