blob: 21f5c8a188a2055b2a40f46f9e2ba5f329601609 [file] [log] [blame]
[localhost]
127.0.0.1 hostname={{ ansible_fqdn }}
# VMs will go away shortly in favor of containers
[vms]
{% if head_vm_list is defined -%}
{% for vm in head_vm_list -%}
{{ vm.name }}
{% endfor -%}
{% endif -%}
[containers]
{% if head_lxd_list is defined -%}
{% for lxd in head_lxd_list -%}
{{ lxd.name }}
{% endfor -%}
{% endif -%}
[services:children]
vms
containers
[docker]
{% if head_vm_list is defined -%}
{% for vm in head_vm_list | selectattr('docker_path', 'defined') -%}
{{ vm.name }}
{% endfor -%}
{% endif -%}