initialize_facts.yml 474 B

123456789101112131415
  1. ---
  2. - name: Initialize host facts
  3. hosts: oo_all_hosts
  4. roles:
  5. - openshift_facts
  6. tasks:
  7. - openshift_facts:
  8. role: common
  9. local_facts:
  10. hostname: "{{ openshift_hostname | default(None) }}"
  11. - set_fact:
  12. openshift_docker_hosted_registry_network: "{{ hostvars[groups.oo_first_master.0].openshift.common.portal_net }}"
  13. - set_fact:
  14. repoquery_cmd: "{{ 'dnf repoquery --latest-limit 1 -d 0' if ansible_pkg_mgr == 'dnf' else 'repoquery' }}"