systemcontainer_crio.yml 3.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116
  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. when: r_crio_use_openshift_sdn | bool
  70. - name: Create /etc/sysconfig/crio-storage
  71. copy:
  72. content: ""
  73. dest: /etc/sysconfig/crio-storage
  74. force: no
  75. - name: Create /etc/sysconfig/crio-network
  76. template:
  77. dest: /etc/sysconfig/crio-network
  78. src: crio-network.j2
  79. - name: Configure oci umount for CRI-O
  80. lineinfile:
  81. dest: /etc/oci-umount.conf
  82. line: '{{ item }}'
  83. with_items: "{{ container_runtime_oci_umounts }}"
  84. - name: Start the CRI-O service
  85. systemd:
  86. name: "cri-o"
  87. enabled: yes
  88. state: started
  89. daemon_reload: yes
  90. register: start_result
  91. # If we are using crio only, docker.service might not be available for
  92. # 'docker login'
  93. - include_tasks: common/post.yml
  94. vars:
  95. openshift_docker_alternative_creds: "{{ (openshift_use_crio_only | bool) or (openshift_docker_use_system_container | bool) }}"