facts.yml 6.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144
  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. tasks:
  9. - name: load openshift_facts module
  10. import_role:
  11. name: openshift_facts
  12. # TODO: Should this role be refactored into health_checks??
  13. - name: Run openshift_sanitize_inventory to set variables
  14. include_role:
  15. name: openshift_sanitize_inventory
  16. - name: Detecting Operating System from ostree_booted
  17. stat:
  18. path: /run/ostree-booted
  19. register: ostree_booted
  20. # Locally setup containerized facts for now
  21. - name: initialize_facts set fact l_is_atomic
  22. set_fact:
  23. l_is_atomic: "{{ ostree_booted.stat.exists }}"
  24. - name: initialize_facts set fact for containerized and l_is_*_system_container
  25. set_fact:
  26. l_is_containerized: "{{ (l_is_atomic | bool) or (containerized | default(false) | bool) }}"
  27. l_is_master_system_container: "{{ (openshift_use_master_system_container | default(openshift_use_system_containers | default(false)) | bool) }}"
  28. # TODO: Should this be moved into health checks??
  29. # Seems as though any check that happens with a corresponding fail should move into health_checks
  30. - name: Validate python version - ans_dist is fedora and python is v3
  31. fail:
  32. msg: |
  33. openshift-ansible requires Python 3 for {{ ansible_distribution }};
  34. For information on enabling Python 3 with Ansible, see https://docs.ansible.com/ansible/python_3_support.html
  35. when:
  36. - ansible_distribution == 'Fedora'
  37. - ansible_python['version']['major'] != 3
  38. # TODO: Should this be moved into health checks??
  39. # Seems as though any check that happens with a corresponding fail should move into health_checks
  40. - name: Validate python version - ans_dist not Fedora and python must be v2
  41. fail:
  42. msg: "openshift-ansible requires Python 2 for {{ ansible_distribution }}"
  43. when:
  44. - ansible_distribution != 'Fedora'
  45. - ansible_python['version']['major'] != 2
  46. # TODO: Should this be moved into health checks??
  47. # Seems as though any check that happens with a corresponding fail should move into health_checks
  48. # Fail as early as possible if Atomic and old version of Docker
  49. - when:
  50. - l_is_atomic | bool
  51. block:
  52. # See https://access.redhat.com/articles/2317361
  53. # and https://github.com/ansible/ansible/issues/15892
  54. # NOTE: the "'s can not be removed at this level else the docker command will fail
  55. # NOTE: When ansible >2.2.1.x is used this can be updated per
  56. # https://github.com/openshift/openshift-ansible/pull/3475#discussion_r103525121
  57. - name: Determine Atomic Host Docker Version
  58. shell: 'CURLY="{"; docker version --format "$CURLY{json .Server.Version}}"'
  59. register: l_atomic_docker_version
  60. - name: assert atomic host docker version is 1.12 or later
  61. assert:
  62. that:
  63. - l_atomic_docker_version.stdout | replace('"', '') | version_compare('1.12','>=')
  64. msg: Installation on Atomic Host requires Docker 1.12 or later. Please upgrade and restart the Atomic Host.
  65. - when:
  66. - not l_is_atomic | bool
  67. block:
  68. - name: Ensure openshift-ansible installer package deps are installed
  69. package:
  70. name: "{{ item }}"
  71. state: present
  72. with_items:
  73. - iproute
  74. - "{{ 'python3-dbus' if ansible_distribution == 'Fedora' else 'dbus-python' }}"
  75. - "{{ 'python3-PyYAML' if ansible_distribution == 'Fedora' else 'PyYAML' }}"
  76. - yum-utils
  77. - name: Ensure various deps for running system containers are installed
  78. package:
  79. name: "{{ item }}"
  80. state: present
  81. with_items:
  82. - atomic
  83. - ostree
  84. - runc
  85. when:
  86. - >
  87. (openshift_use_system_containers | default(False)) | bool
  88. or (openshift_use_etcd_system_container | default(False)) | bool
  89. or (openshift_use_openvswitch_system_container | default(False)) | bool
  90. or (openshift_use_node_system_container | default(False)) | bool
  91. or (openshift_use_master_system_container | default(False)) | bool
  92. - name: Gather Cluster facts and set is_containerized if needed
  93. openshift_facts:
  94. role: common
  95. local_facts:
  96. deployment_type: "{{ openshift_deployment_type }}"
  97. deployment_subtype: "{{ openshift_deployment_subtype | default(None) }}"
  98. cli_image: "{{ osm_image | default(None) }}"
  99. hostname: "{{ openshift_hostname | default(None) }}"
  100. ip: "{{ openshift_ip | default(None) }}"
  101. is_containerized: "{{ l_is_containerized | default(None) }}"
  102. is_master_system_container: "{{ l_is_master_system_container | default(false) }}"
  103. public_hostname: "{{ openshift_public_hostname | default(None) }}"
  104. public_ip: "{{ openshift_public_ip | default(None) }}"
  105. portal_net: "{{ openshift_portal_net | default(openshift_master_portal_net) | default(None) }}"
  106. http_proxy: "{{ openshift_http_proxy | default(None) }}"
  107. https_proxy: "{{ openshift_https_proxy | default(None) }}"
  108. no_proxy: "{{ openshift_no_proxy | default(None) }}"
  109. generate_no_proxy_hosts: "{{ openshift_generate_no_proxy_hosts | default(True) }}"
  110. - name: Set fact of no_proxy_internal_hostnames
  111. openshift_facts:
  112. role: common
  113. local_facts:
  114. no_proxy_internal_hostnames: "{{ hostvars | oo_select_keys(groups['oo_nodes_to_config']
  115. | union(groups['oo_masters_to_config'])
  116. | union(groups['oo_etcd_to_config'] | default([])))
  117. | oo_collect('openshift.common.hostname') | default([]) | join (',')
  118. }}"
  119. when:
  120. - openshift_http_proxy is defined or openshift_https_proxy is defined
  121. - openshift_generate_no_proxy_hosts | default(True) | bool
  122. - name: initialize_facts set_fact repoquery command
  123. set_fact:
  124. repoquery_cmd: "{{ 'dnf repoquery --latest-limit 1 -d 0' if ansible_pkg_mgr == 'dnf' else 'repoquery --plugins' }}"
  125. repoquery_installed: "{{ 'dnf repoquery --latest-limit 1 -d 0 --disableexcludes=all --installed' if ansible_pkg_mgr == 'dnf' else 'repoquery --plugins --installed' }}"
  126. - name: initialize_facts set_fact on openshift_docker_hosted_registry_network
  127. set_fact:
  128. openshift_docker_hosted_registry_network: "{{ '' if 'oo_first_master' not in groups else hostvars[groups.oo_first_master.0].openshift.common.portal_net }}"