facts.yml 7.7 KB

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