initialize_facts.yml 517 B

1234567891011121314151617
  1. ---
  2. - name: Ensure that all non-node hosts are accessible
  3. hosts: oo_masters_to_config:oo_etcd_to_config:oo_lb_to_config:oo_nfs_to_config
  4. any_errors_fatal: true
  5. tasks:
  6. - name: Initialize host facts
  7. hosts: oo_all_hosts
  8. roles:
  9. - openshift_facts
  10. tasks:
  11. - openshift_facts:
  12. role: common
  13. local_facts:
  14. hostname: "{{ openshift_hostname | default(None) }}"
  15. - set_fact:
  16. openshift_docker_hosted_registry_network: "{{ hostvars[groups.oo_first_master.0].openshift.common.portal_net }}"