openshift_facts.yml 711 B

123456789101112131415161718192021222324252627282930
  1. ---
  2. - hosts: localhost
  3. connection: local
  4. become: no
  5. gather_facts: no
  6. tasks:
  7. - include_vars: openshift-cluster/cluster_hosts.yml
  8. - name: Evaluate group l_oo_all_hosts
  9. add_host:
  10. name: "{{ item }}"
  11. groups: l_oo_all_hosts
  12. with_items: "{{ g_all_hosts | default([]) }}"
  13. changed_when: False
  14. - hosts: l_oo_all_hosts
  15. gather_facts: no
  16. tasks:
  17. - include_vars: openshift-cluster/cluster_hosts.yml
  18. - include: ../common/openshift-cluster/evaluate_groups.yml
  19. - name: Gather Cluster facts
  20. hosts: OSEv3
  21. roles:
  22. - openshift_facts
  23. tasks:
  24. - openshift_facts:
  25. openshift_env: "{{ hostvars[inventory_hostname] | oo_openshift_env }}"
  26. register: result
  27. - debug: var=result