list.yml 951 B

12345678910111213141516171819202122232425262728293031323334
  1. ---
  2. - name: Generate oo_list_hosts group
  3. hosts: localhost
  4. become: no
  5. connection: local
  6. gather_facts: no
  7. vars_files:
  8. - vars.yml
  9. tasks:
  10. - set_fact: scratch_group=tag_clusterid_{{ cluster_id }}
  11. when: cluster_id != ''
  12. - set_fact: scratch_group=all
  13. when: cluster_id == ''
  14. - add_host:
  15. name: "{{ item }}"
  16. groups: oo_list_hosts
  17. ansible_ssh_user: "{{ deployment_vars[deployment_type].ssh_user }}"
  18. ansible_ssh_host: "{{ hostvars[item].ansible_ssh_host | default(item) }}"
  19. ansible_become: "{{ deployment_vars[deployment_type].sudo }}"
  20. with_items: groups[scratch_group] | default([]) | difference(['localhost'])
  21. - name: List Hosts
  22. hosts: oo_list_hosts
  23. - name: List Hosts
  24. hosts: localhost
  25. become: no
  26. connection: local
  27. gather_facts: no
  28. vars_files:
  29. - vars.yml
  30. tasks:
  31. - debug:
  32. msg: "{{ hostvars | oo_select_keys(groups[scratch_group] | default([])) | oo_pretty_print_cluster }}"