openshift_facts.yml 692 B

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