facts.yml 6.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141
  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. - name: Ensure various deps for running system containers are installed
  77. package:
  78. name: "{{ item }}"
  79. state: present
  80. with_items:
  81. - atomic
  82. - ostree
  83. - runc
  84. when:
  85. - >
  86. (openshift_use_system_containers | default(False)) | bool
  87. or (openshift_use_etcd_system_container | default(False)) | bool
  88. or (openshift_use_openvswitch_system_container | default(False)) | bool
  89. or (openshift_use_node_system_container | default(False)) | bool
  90. or (openshift_use_master_system_container | default(False)) | bool
  91. - name: Gather Cluster facts and set is_containerized if needed
  92. openshift_facts:
  93. role: common
  94. local_facts:
  95. deployment_type: "{{ openshift_deployment_type }}"
  96. deployment_subtype: "{{ openshift_deployment_subtype | default(None) }}"
  97. hostname: "{{ openshift_hostname | default(None) }}"
  98. ip: "{{ openshift_ip | default(None) }}"
  99. is_containerized: "{{ l_is_containerized | 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 | oo_select_keys(groups['oo_nodes_to_config']
  112. | union(groups['oo_masters_to_config'])
  113. | union(groups['oo_etcd_to_config'] | default([])))
  114. | 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_facts set_fact repoquery command
  120. set_fact:
  121. repoquery_cmd: "{{ 'dnf repoquery --latest-limit 1 -d 0' if ansible_pkg_mgr == 'dnf' else 'repoquery --plugins' }}"
  122. repoquery_installed: "{{ 'dnf repoquery --latest-limit 1 -d 0 --disableexcludes=all --installed' if ansible_pkg_mgr == 'dnf' else 'repoquery --plugins --installed' }}"
  123. - name: initialize_facts set_fact on openshift_docker_hosted_registry_network
  124. set_fact:
  125. openshift_docker_hosted_registry_network: "{{ '' if 'oo_first_master' not in groups else hostvars[groups.oo_first_master.0].openshift.common.portal_net }}"