systemcontainer_crio.yml 4.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163
  1. ---
  2. # TODO: Much of this file is shared with container engine tasks
  3. - name: Ensure container-selinux is installed
  4. package:
  5. name: container-selinux
  6. state: present
  7. when: not openshift.common.is_atomic | bool
  8. register: result
  9. until: result | success
  10. - name: Check we are not using node as a Docker container with CRI-O
  11. fail: msg='Cannot use CRI-O with node configured as a Docker container'
  12. when:
  13. - openshift.common.is_containerized | bool
  14. - not openshift.common.is_node_system_container | bool
  15. # Used to pull and install the system container
  16. - name: Ensure atomic is installed
  17. package:
  18. name: atomic
  19. state: present
  20. when: not openshift.common.is_atomic | bool
  21. register: result
  22. until: result | success
  23. # At the time of writing the atomic command requires runc for it's own use. This
  24. # task is here in the even that the atomic package ever removes the dependency.
  25. - name: Ensure runc is installed
  26. package:
  27. name: runc
  28. state: present
  29. when: not openshift.common.is_atomic | bool
  30. register: result
  31. until: result | success
  32. - name: Check that overlay is in the kernel
  33. shell: lsmod | grep overlay
  34. register: l_has_overlay_in_kernel
  35. ignore_errors: yes
  36. failed_when: false
  37. - when: l_has_overlay_in_kernel.rc != 0
  38. block:
  39. - name: Add overlay to modprobe.d
  40. template:
  41. dest: /etc/modules-load.d/overlay.conf
  42. src: overlay.conf.j2
  43. backup: yes
  44. - name: Manually modprobe overlay into the kernel
  45. command: modprobe overlay
  46. - name: Enable and start systemd-modules-load
  47. service:
  48. name: systemd-modules-load
  49. enabled: yes
  50. state: restarted
  51. - name: Ensure proxies are in the atomic.conf
  52. include_role:
  53. name: openshift_atomic
  54. tasks_from: proxy
  55. - block:
  56. - name: Set CRI-O image defaults
  57. set_fact:
  58. l_crio_image_prepend: "docker.io/gscrivano"
  59. l_crio_image_name: "cri-o-fedora"
  60. l_crio_image_tag: "latest"
  61. - name: Use Centos based image when distribution is CentOS
  62. set_fact:
  63. l_crio_image_name: "cri-o-centos"
  64. when: ansible_distribution == "CentOS"
  65. - name: Set CRI-O image tag
  66. set_fact:
  67. l_crio_image_tag: "{{ l_openshift_image_tag }}"
  68. when:
  69. - openshift_deployment_type == 'openshift-enterprise'
  70. - name: Use RHEL based image when distribution is Red Hat
  71. set_fact:
  72. l_crio_image_prepend: "registry.access.redhat.com/openshift3"
  73. l_crio_image_name: "cri-o"
  74. when: ansible_distribution == "RedHat"
  75. - name: Set the full image name
  76. set_fact:
  77. l_crio_image: "{{ l_crio_image_prepend }}/{{ l_crio_image_name }}:{{ l_crio_image_tag }}"
  78. # For https://github.com/openshift/aos-cd-jobs/pull/624#pullrequestreview-61816548
  79. - name: Use a specific image if requested
  80. set_fact:
  81. l_crio_image: "{{ openshift_crio_systemcontainer_image_override }}"
  82. when:
  83. - openshift_crio_systemcontainer_image_override is defined
  84. - openshift_crio_systemcontainer_image_override != ""
  85. # Be nice and let the user see the variable result
  86. - debug:
  87. var: l_crio_image
  88. # NOTE: no_proxy added as a workaround until https://github.com/projectatomic/atomic/pull/999 is released
  89. - name: Pre-pull CRI-O System Container image
  90. command: "atomic pull --storage ostree {{ l_crio_image }}"
  91. changed_when: false
  92. environment:
  93. NO_PROXY: "{{ openshift.common.no_proxy | default('') }}"
  94. - name: Install CRI-O System Container
  95. oc_atomic_container:
  96. name: "cri-o"
  97. image: "{{ l_crio_image }}"
  98. state: latest
  99. - name: Remove CRI-O default configuration files
  100. file:
  101. path: "{{ item }}"
  102. state: absent
  103. with_items:
  104. - /etc/cni/net.d/200-loopback.conf
  105. - /etc/cni/net.d/100-crio-bridge.conf
  106. - name: Create the CRI-O configuration
  107. template:
  108. dest: /etc/crio/crio.conf
  109. src: crio.conf.j2
  110. backup: yes
  111. - name: Ensure CNI configuration directory exists
  112. file:
  113. path: /etc/cni/net.d/
  114. state: directory
  115. - name: setup firewall for CRI-O
  116. import_tasks: crio_firewall.yml
  117. - name: Configure the CNI network
  118. template:
  119. dest: /etc/cni/net.d/openshift-sdn.conf
  120. src: 80-openshift-sdn.conf.j2
  121. - name: Start the CRI-O service
  122. systemd:
  123. name: "cri-o"
  124. enabled: yes
  125. state: started
  126. daemon_reload: yes
  127. register: start_result
  128. - meta: flush_handlers
  129. # If we are using crio only, docker.service might not be available for
  130. # 'docker login'
  131. - include_tasks: registry_auth.yml
  132. vars:
  133. openshift_docker_alternative_creds: "{{ openshift_use_crio_only }}"