initialize_facts.yml 443 B

123456789101112131415
  1. ---
  2. - name: Initialize host facts
  3. hosts: oo_all_hosts
  4. any_errors_fatal: true
  5. roles:
  6. - openshift_facts
  7. tasks:
  8. - openshift_facts:
  9. role: common
  10. local_facts:
  11. hostname: "{{ openshift_hostname | default(None) }}"
  12. - set_fact:
  13. openshift_docker_hosted_registry_network: "{{ hostvars[groups.oo_first_master.0].openshift.common.portal_net }}"
  14. - set_fact:
  15. openshift_deployment_type: "{{ deployment_type }}"