main.yml 5.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118
  1. ---
  2. - name: Detecting Operating System
  3. stat:
  4. path: /run/ostree-booted
  5. register: ostree_booted
  6. # Locally setup containerized facts for now
  7. - set_fact:
  8. l_is_atomic: "{{ ostree_booted.stat.exists }}"
  9. l_use_crio: "{{ openshift_docker_use_crio | default(false) }}"
  10. - set_fact:
  11. l_is_containerized: "{{ (l_is_atomic | bool) or (containerized | default(false) | bool) }}"
  12. l_is_openvswitch_system_container: "{{ (openshift_use_openvswitch_system_container | default(openshift_use_system_containers) | bool) }}"
  13. l_is_node_system_container: "{{ (openshift_use_node_system_container | default(openshift_use_system_containers) | bool) }}"
  14. l_is_master_system_container: "{{ (openshift_use_master_system_container | default(openshift_use_system_containers) | bool) }}"
  15. l_is_etcd_system_container: "{{ (openshift_use_etcd_system_container | default(openshift_use_system_containers) | bool) }}"
  16. - set_fact:
  17. 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 }}"
  18. - set_fact:
  19. l_etcd_runtime: "{{ 'runc' if l_is_etcd_system_container else 'docker' if l_is_containerized else 'host' }}"
  20. - name: Validate python version
  21. fail:
  22. msg: |
  23. openshift-ansible requires Python 3 for {{ ansible_distribution }};
  24. For information on enabling Python 3 with Ansible, see https://docs.ansible.com/ansible/python_3_support.html
  25. when:
  26. - ansible_distribution == 'Fedora'
  27. - ansible_python['version']['major'] != 3
  28. - r_openshift_facts_ran is not defined
  29. - name: Validate python version
  30. fail:
  31. msg: "openshift-ansible requires Python 2 for {{ ansible_distribution }}"
  32. when:
  33. - ansible_distribution != 'Fedora'
  34. - ansible_python['version']['major'] != 2
  35. - r_openshift_facts_ran is not defined
  36. # Fail as early as possible if Atomic and old version of Docker
  37. - block:
  38. # See https://access.redhat.com/articles/2317361
  39. # and https://github.com/ansible/ansible/issues/15892
  40. # NOTE: the "'s can not be removed at this level else the docker command will fail
  41. # NOTE: When ansible >2.2.1.x is used this can be updated per
  42. # https://github.com/openshift/openshift-ansible/pull/3475#discussion_r103525121
  43. - name: Determine Atomic Host Docker Version
  44. shell: 'CURLY="{"; docker version --format "$CURLY{json .Server.Version}}"'
  45. register: l_atomic_docker_version
  46. - assert:
  47. msg: Installation on Atomic Host requires Docker 1.12 or later. Please upgrade and restart the Atomic Host.
  48. that:
  49. - l_atomic_docker_version.stdout | replace('"', '') | version_compare('1.12','>=')
  50. when:
  51. - not l_use_crio
  52. - l_is_atomic | bool
  53. - r_openshift_facts_ran is not defined
  54. - name: Load variables
  55. include_vars: "{{ item }}"
  56. with_first_found:
  57. - "{{ ansible_distribution }}.yml"
  58. - "default.yml"
  59. - name: Ensure various deps are installed
  60. package: name={{ item }} state=present
  61. with_items: "{{ required_packages }}"
  62. when:
  63. - not l_is_atomic | bool
  64. - r_openshift_facts_ran is not defined
  65. - name: Ensure various deps for running system containers are installed
  66. package: name={{ item }} state=present
  67. with_items: "{{ required_system_containers_packages }}"
  68. when:
  69. - not l_is_atomic | bool
  70. - l_any_system_container | bool
  71. - r_openshift_facts_ran is not defined
  72. - name: Gather Cluster facts and set is_containerized if needed
  73. openshift_facts:
  74. role: common
  75. local_facts:
  76. debug_level: "{{ openshift_debug_level | default(2) }}"
  77. deployment_type: "{{ openshift_deployment_type }}"
  78. deployment_subtype: "{{ openshift_deployment_subtype | default(None) }}"
  79. cluster_id: "{{ openshift_cluster_id | default('default') }}"
  80. hostname: "{{ openshift_hostname | default(None) }}"
  81. ip: "{{ openshift_ip | default(None) }}"
  82. is_containerized: "{{ l_is_containerized | default(None) }}"
  83. is_openvswitch_system_container: "{{ l_is_openvswitch_system_container | default(false) }}"
  84. is_node_system_container: "{{ l_is_node_system_container | default(false) }}"
  85. is_master_system_container: "{{ l_is_master_system_container | default(false) }}"
  86. is_etcd_system_container: "{{ l_is_etcd_system_container | default(false) }}"
  87. etcd_runtime: "{{ l_etcd_runtime }}"
  88. system_images_registry: "{{ system_images_registry | default('') }}"
  89. public_hostname: "{{ openshift_public_hostname | default(None) }}"
  90. public_ip: "{{ openshift_public_ip | default(None) }}"
  91. portal_net: "{{ openshift_portal_net | default(openshift_master_portal_net) | default(None) }}"
  92. http_proxy: "{{ openshift_http_proxy | default(None) }}"
  93. https_proxy: "{{ openshift_https_proxy | default(None) }}"
  94. no_proxy: "{{ openshift_no_proxy | default(None) }}"
  95. generate_no_proxy_hosts: "{{ openshift_generate_no_proxy_hosts | default(True) }}"
  96. no_proxy_internal_hostnames: "{{ openshift_no_proxy_internal_hostnames | default(None) }}"
  97. sdn_network_plugin_name: "{{ os_sdn_network_plugin_name | default(None) }}"
  98. use_openshift_sdn: "{{ openshift_use_openshift_sdn | default(None) }}"
  99. - name: Set repoquery command
  100. set_fact:
  101. repoquery_cmd: "{{ 'dnf repoquery --latest-limit 1 -d 0' if ansible_pkg_mgr == 'dnf' else 'repoquery --plugins' }}"
  102. - name: Register that this already ran
  103. set_fact:
  104. r_openshift_facts_ran: True