initialize_facts.yml 6.7 KB

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