Andy Bavier | a17d84b | 2016-11-16 09:39:26 -0800 | [diff] [blame] | 1 | [localhost] |
2 | 127.0.0.1 hostname={{ ansible_fqdn }} | ||||
3 | |||||
4 | # VMs will go away shortly in favor of containers | ||||
5 | [vms] | ||||
6 | {% for vm in head_vm_list -%} | ||||
7 | {{ vm.name }} | ||||
8 | {% endfor -%} | ||||
9 | |||||
10 | [containers] | ||||
11 | {% for lxd in head_lxd_list -%} | ||||
12 | {{ lxd.name }} | ||||
13 | {% endfor -%} | ||||
14 | |||||
15 | [services:children] | ||||
16 | vms | ||||
17 | containers | ||||
18 | |||||
19 | [docker] | ||||
20 | {% for vm in head_vm_list | selectattr('docker_path', 'defined') -%} | ||||
21 | {{ vm.name }} | ||||
22 | {% endfor -%} |