openshift_facts.yml 444 B

1234567891011121314151617181920
  1. ---
  2. - name: Cluster hosts
  3. hosts: localhost
  4. connection: local
  5. become: no
  6. gather_facts: no
  7. tasks:
  8. - include_vars: openshift-cluster/cluster_hosts.yml
  9. - include: ../common/openshift-cluster/evaluate_groups.yml
  10. - name: Gather Cluster facts
  11. hosts: OSEv3
  12. roles:
  13. - openshift_facts
  14. tasks:
  15. - openshift_facts:
  16. openshift_env: "{{ hostvars[inventory_hostname] | oo_openshift_env }}"
  17. register: result
  18. - debug: var=result