systemcontainer_crio.yml 2.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109
  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. values:
  46. - "ADDTL_MOUNTS={{ l_crio_additional_mounts }}"
  47. - name: Remove CRI-O default configuration files
  48. file:
  49. path: "{{ item }}"
  50. state: absent
  51. with_items:
  52. - /etc/cni/net.d/200-loopback.conf
  53. - /etc/cni/net.d/100-crio-bridge.conf
  54. - name: Create the CRI-O configuration
  55. template:
  56. dest: /etc/crio/crio.conf
  57. src: crio.conf.j2
  58. backup: yes
  59. - name: Ensure CNI configuration directory exists
  60. file:
  61. path: /etc/cni/net.d/
  62. state: directory
  63. - name: setup firewall for CRI-O
  64. import_tasks: crio_firewall.yml
  65. - name: Configure the CNI network
  66. template:
  67. dest: /etc/cni/net.d/openshift-sdn.conf
  68. src: 80-openshift-sdn.conf.j2
  69. - name: Create /etc/sysconfig/crio-storage
  70. copy:
  71. content: ""
  72. dest: /etc/sysconfig/crio-storage
  73. force: no
  74. - name: Create /etc/sysconfig/crio-network
  75. template:
  76. dest: /etc/sysconfig/crio-network
  77. src: crio-network.j2
  78. - name: Start the CRI-O service
  79. systemd:
  80. name: "cri-o"
  81. enabled: yes
  82. state: started
  83. daemon_reload: yes
  84. register: start_result
  85. # If we are using crio only, docker.service might not be available for
  86. # 'docker login'
  87. - include_tasks: common/post.yml
  88. vars:
  89. openshift_docker_alternative_creds: "{{ (openshift_use_crio_only | bool) or (openshift_docker_use_system_container | bool) }}"