systemcontainer_crio.yml 2.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596
  1. ---
  2. # TODO: Much of this file is shared with container engine tasks
  3. - name: Check we are not using node as a Docker container with CRI-O
  4. fail: msg='Cannot use CRI-O with node configured as a Docker container'
  5. when:
  6. - openshift_is_containerized | bool
  7. - not l_is_node_system_container | bool
  8. - include_tasks: common/pre.yml
  9. - include_tasks: common/syscontainer_packages.yml
  10. - name: Check that overlay is in the kernel
  11. shell: lsmod | grep overlay
  12. register: l_has_overlay_in_kernel
  13. ignore_errors: yes
  14. failed_when: false
  15. - when: l_has_overlay_in_kernel.rc != 0
  16. block:
  17. - name: Add overlay to modprobe.d
  18. template:
  19. dest: /etc/modules-load.d/overlay.conf
  20. src: overlay.conf.j2
  21. backup: yes
  22. - name: Manually modprobe overlay into the kernel
  23. command: modprobe overlay
  24. - name: Enable and start systemd-modules-load
  25. service:
  26. name: systemd-modules-load
  27. enabled: yes
  28. state: restarted
  29. - name: Ensure proxies are in the atomic.conf
  30. include_tasks: common/atomic_proxy.yml
  31. # Be nice and let the user see the variable result
  32. - debug:
  33. var: l_crio_image
  34. # NOTE: no_proxy added as a workaround until https://github.com/projectatomic/atomic/pull/999 is released
  35. - name: Pre-pull CRI-O System Container image
  36. command: "atomic pull --storage ostree {{ l_crio_image }}"
  37. changed_when: false
  38. environment:
  39. NO_PROXY: "{{ openshift.common.no_proxy | default('') }}"
  40. - name: Install CRI-O System Container
  41. oc_atomic_container:
  42. name: "cri-o"
  43. image: "{{ l_crio_image }}"
  44. state: latest
  45. - name: Remove CRI-O default configuration files
  46. file:
  47. path: "{{ item }}"
  48. state: absent
  49. with_items:
  50. - /etc/cni/net.d/200-loopback.conf
  51. - /etc/cni/net.d/100-crio-bridge.conf
  52. - name: Create the CRI-O configuration
  53. template:
  54. dest: /etc/crio/crio.conf
  55. src: crio.conf.j2
  56. backup: yes
  57. - name: Ensure CNI configuration directory exists
  58. file:
  59. path: /etc/cni/net.d/
  60. state: directory
  61. - name: setup firewall for CRI-O
  62. import_tasks: crio_firewall.yml
  63. - name: Configure the CNI network
  64. template:
  65. dest: /etc/cni/net.d/openshift-sdn.conf
  66. src: 80-openshift-sdn.conf.j2
  67. - name: Start the CRI-O service
  68. systemd:
  69. name: "cri-o"
  70. enabled: yes
  71. state: started
  72. daemon_reload: yes
  73. register: start_result
  74. # If we are using crio only, docker.service might not be available for
  75. # 'docker login'
  76. - include_tasks: common/post.yml
  77. vars:
  78. openshift_docker_alternative_creds: "{{ openshift_use_crio_only }}"