facts.yml 6.3 KB

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