package_crio.yml 2.1 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495
  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: "{{ pkg_list | join(',') }}"
  29. state: latest
  30. register: result
  31. until: result is succeeded
  32. vars:
  33. pkg_list:
  34. - cri-o
  35. - cri-tools
  36. - atomic
  37. - skopeo
  38. - name: Remove CRI-O default configuration files
  39. file:
  40. path: "{{ item }}"
  41. state: absent
  42. with_items:
  43. - /etc/cni/net.d/200-loopback.conf
  44. - /etc/cni/net.d/100-crio-bridge.conf
  45. - name: Create the CRI-O configuration
  46. template:
  47. dest: /etc/crio/crio.conf
  48. src: crio.conf.j2
  49. backup: yes
  50. - name: Update crictl.yaml runtime-endpoint
  51. yedit:
  52. src: /etc/crictl.yaml
  53. key: runtime-endpoint
  54. value: "{{ openshift_crio_var_sock }}"
  55. - name: Ensure CNI configuration directory exists
  56. file:
  57. path: /etc/cni/net.d/
  58. state: directory
  59. - name: setup firewall for CRI-O
  60. import_tasks: crio_firewall.yml
  61. - name: Configure the CNI network
  62. template:
  63. dest: /etc/cni/net.d/openshift-sdn.conf
  64. src: 80-openshift-sdn.conf.j2
  65. when: r_crio_use_openshift_sdn | bool
  66. - name: Create /etc/sysconfig/crio-network
  67. template:
  68. dest: /etc/sysconfig/crio-network
  69. src: crio-network.j2
  70. - name: Start the CRI-O service
  71. systemd:
  72. name: "cri-o"
  73. enabled: yes
  74. state: restarted
  75. daemon_reload: yes
  76. register: start_result
  77. # If we are using crio only, docker.service might not be available for
  78. # 'docker login'
  79. - import_tasks: common/post.yml