list.yml 1.2 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243
  1. - name: Generate oo_list_hosts group
  2. hosts: localhost
  3. connection: local
  4. gather_facts: no
  5. vars:
  6. libvirt_uri: 'qemu:///system'
  7. tasks:
  8. - name: List VMs
  9. virt:
  10. command: list_vms
  11. register: list_vms
  12. - name: Collect MAC addresses of the VMs
  13. shell: 'virsh -c {{ libvirt_uri }} dumpxml {{ item }} | xmllint --xpath "string(//domain/devices/interface/mac/@address)" -'
  14. register: scratch_mac
  15. with_items: '{{ list_vms.list_vms }}'
  16. when: item|truncate(cluster_id|length+1, True) == '{{ cluster_id }}-...'
  17. - name: Collect IP addresses of the VMs
  18. shell: "awk '/{{ item.stdout }}/ {print $1}' /proc/net/arp"
  19. register: scratch_ip
  20. with_items: '{{ scratch_mac.results }}'
  21. when: item.skipped is not defined
  22. - name: Add hosts
  23. add_host:
  24. hostname: '{{ item[0] }}'
  25. ansible_ssh_host: '{{ item[1].stdout }}'
  26. ansible_ssh_user: root
  27. groups: oo_list_hosts
  28. with_together:
  29. - '{{ list_vms.list_vms }}'
  30. - '{{ scratch_ip.results }}'
  31. when: item[1].skipped is not defined
  32. - name: List Hosts
  33. hosts: oo_list_hosts
  34. tasks:
  35. - debug:
  36. msg: 'public:{{ansible_default_ipv4.address}} private:{{ansible_default_ipv4.address}}'