package_crio.yml 2.1 KB

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