facts.yml 6.2 KB

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