main.yml 4.5 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091
  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. - set_fact:
  10. l_is_containerized: "{{ (l_is_atomic | bool) or (containerized | default(false) | bool) }}"
  11. l_is_openvswitch_system_container: "{{ (use_openvswitch_system_container | default(use_system_containers) | bool) }}"
  12. l_is_node_system_container: "{{ (use_node_system_container | default(use_system_containers) | bool) }}"
  13. l_is_master_system_container: "{{ (use_master_system_container | default(use_system_containers) | bool) }}"
  14. l_is_etcd_system_container: "{{ (use_etcd_system_container | default(use_system_containers) | bool) }}"
  15. - set_fact:
  16. 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 }}"
  17. - name: Validate python version
  18. fail:
  19. msg: |
  20. openshift-ansible requires Python 3 for {{ ansible_distribution }};
  21. For information on enabling Python 3 with Ansible, see https://docs.ansible.com/ansible/python_3_support.html
  22. when: ansible_distribution == 'Fedora' and ansible_python['version']['major'] != 3
  23. - name: Validate python version
  24. fail:
  25. msg: "openshift-ansible requires Python 2 for {{ ansible_distribution }}"
  26. when: ansible_distribution != 'Fedora' and ansible_python['version']['major'] != 2
  27. # Fail as early as possible if Atomic and old version of Docker
  28. - block:
  29. # See https://access.redhat.com/articles/2317361
  30. # and https://github.com/ansible/ansible/issues/15892
  31. # NOTE: the "'s can not be removed at this level else the docker command will fail
  32. # NOTE: When ansible >2.2.1.x is used this can be updated per
  33. # https://github.com/openshift/openshift-ansible/pull/3475#discussion_r103525121
  34. - name: Determine Atomic Host Docker Version
  35. shell: 'CURLY="{"; docker version --format "$CURLY{json .Server.Version}}"'
  36. register: l_atomic_docker_version
  37. - assert:
  38. msg: Installation on Atomic Host requires Docker 1.12 or later. Please upgrade and restart the Atomic Host.
  39. that:
  40. - l_atomic_docker_version.stdout | replace('"', '') | version_compare('1.12','>=')
  41. when: l_is_atomic | bool
  42. - name: Ensure various deps are installed
  43. package: name={{ item }} state=present
  44. with_items: "{{ required_packages }}"
  45. when: not l_is_atomic | bool
  46. - name: Ensure various deps for running system containers are installed
  47. package: name={{ item }} state=present
  48. with_items: "{{ required_system_containers_packages }}"
  49. when:
  50. - not l_is_atomic | bool
  51. - l_any_system_container | bool
  52. - name: Gather Cluster facts and set is_containerized if needed
  53. openshift_facts:
  54. role: common
  55. local_facts:
  56. debug_level: "{{ openshift_debug_level | default(2) }}"
  57. deployment_type: "{{ openshift_deployment_type }}"
  58. deployment_subtype: "{{ openshift_deployment_subtype | default(None) }}"
  59. cluster_id: "{{ openshift_cluster_id | default('default') }}"
  60. hostname: "{{ openshift_hostname | default(None) }}"
  61. ip: "{{ openshift_ip | default(None) }}"
  62. is_containerized: "{{ l_is_containerized | default(None) }}"
  63. is_openvswitch_system_container: "{{ l_is_openvswitch_system_container | default(false) }}"
  64. is_node_system_container: "{{ l_is_node_system_container | default(false) }}"
  65. is_master_system_container: "{{ l_is_master_system_container | default(false) }}"
  66. is_etcd_system_container: "{{ l_is_etcd_system_container | default(false) }}"
  67. system_images_registry: "{{ system_images_registry | default('') }}"
  68. public_hostname: "{{ openshift_public_hostname | default(None) }}"
  69. public_ip: "{{ openshift_public_ip | default(None) }}"
  70. portal_net: "{{ openshift_portal_net | default(openshift_master_portal_net) | default(None) }}"
  71. http_proxy: "{{ openshift_http_proxy | default(None) }}"
  72. https_proxy: "{{ openshift_https_proxy | default(None) }}"
  73. no_proxy: "{{ openshift_no_proxy | default(None) }}"
  74. generate_no_proxy_hosts: "{{ openshift_generate_no_proxy_hosts | default(True) }}"
  75. no_proxy_internal_hostnames: "{{ openshift_no_proxy_internal_hostnames | default(None) }}"
  76. sdn_network_plugin_name: "{{ os_sdn_network_plugin_name | default(None) }}"
  77. use_openshift_sdn: "{{ openshift_use_openshift_sdn | default(None) }}"
  78. - name: Set repoquery command
  79. set_fact:
  80. repoquery_cmd: "{{ 'dnf repoquery --latest-limit 1 -d 0' if ansible_pkg_mgr == 'dnf' else 'repoquery --plugins' }}"