package_crio.yml 2.0 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485
  1. ---
  2. - name: Fail if Atomic Host since this is an rpm request
  3. fail: msg='Cannot use CRI-O as a package on Atomic Host'
  4. when:
  5. - openshift_is_atomic | bool
  6. - import_tasks: common/pre.yml
  7. - name: Check that overlay is in the kernel
  8. shell: lsmod | grep overlay
  9. register: l_has_overlay_in_kernel
  10. ignore_errors: yes
  11. failed_when: false
  12. - when: l_has_overlay_in_kernel.rc != 0
  13. block:
  14. - name: Add overlay to modprobe.d
  15. template:
  16. dest: /etc/modules-load.d/overlay.conf
  17. src: overlay.conf.j2
  18. backup: yes
  19. - name: Manually modprobe overlay into the kernel
  20. command: modprobe overlay
  21. - name: Enable and start systemd-modules-load
  22. service:
  23. name: systemd-modules-load
  24. enabled: yes
  25. state: restarted
  26. - name: Install cri-o
  27. package:
  28. name: "cri-o"
  29. state: present
  30. register: result
  31. until: result is succeeded
  32. - name: Remove CRI-O default configuration files
  33. file:
  34. path: "{{ item }}"
  35. state: absent
  36. with_items:
  37. - /etc/cni/net.d/200-loopback.conf
  38. - /etc/cni/net.d/100-crio-bridge.conf
  39. - name: Create the CRI-O configuration
  40. template:
  41. dest: /etc/crio/crio.conf
  42. src: crio.conf.j2
  43. backup: yes
  44. - name: Ensure CNI configuration directory exists
  45. file:
  46. path: /etc/cni/net.d/
  47. state: directory
  48. - name: setup firewall for CRI-O
  49. import_tasks: crio_firewall.yml
  50. - name: Configure the CNI network
  51. template:
  52. dest: /etc/cni/net.d/openshift-sdn.conf
  53. src: 80-openshift-sdn.conf.j2
  54. when: r_crio_use_openshift_sdn | bool
  55. - name: Create /etc/sysconfig/crio-network
  56. template:
  57. dest: /etc/sysconfig/crio-network
  58. src: crio-network.j2
  59. - name: Start the CRI-O service
  60. systemd:
  61. name: "cri-o"
  62. enabled: yes
  63. state: restarted
  64. daemon_reload: yes
  65. register: start_result
  66. # If we are using crio only, docker.service might not be available for
  67. # 'docker login'
  68. - import_tasks: common/post.yml
  69. vars:
  70. openshift_docker_alternative_creds: "{{ openshift_use_crio_only | bool }}"