systemcontainer_crio.yml 2.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109
  1. ---
  2. - import_tasks: common/pre.yml
  3. - import_tasks: common/syscontainer_packages.yml
  4. - name: Check that overlay is in the kernel
  5. shell: lsmod | grep overlay
  6. register: l_has_overlay_in_kernel
  7. ignore_errors: yes
  8. failed_when: false
  9. - when: l_has_overlay_in_kernel.rc != 0
  10. block:
  11. - name: Add overlay to modprobe.d
  12. template:
  13. dest: /etc/modules-load.d/overlay.conf
  14. src: overlay.conf.j2
  15. backup: yes
  16. - name: Manually modprobe overlay into the kernel
  17. command: modprobe overlay
  18. - name: Enable and start systemd-modules-load
  19. service:
  20. name: systemd-modules-load
  21. enabled: yes
  22. state: restarted
  23. - name: Ensure proxies are in the atomic.conf
  24. import_tasks: common/atomic_proxy.yml
  25. # Be nice and let the user see the variable result
  26. - debug:
  27. var: l_crio_image
  28. # NOTE: no_proxy added as a workaround until https://github.com/projectatomic/atomic/pull/999 is released
  29. - name: Pre-pull CRI-O System Container image
  30. command: "atomic pull --storage ostree {{ l_crio_image }}"
  31. changed_when: false
  32. environment:
  33. NO_PROXY: "{{ openshift.common.no_proxy | default('') }}"
  34. - name: Install CRI-O System Container
  35. oc_atomic_container:
  36. name: "cri-o"
  37. image: "{{ l_crio_image }}"
  38. state: latest
  39. values:
  40. - "ADDTL_MOUNTS={{ l_crio_additional_mounts }}"
  41. - name: Remove CRI-O default configuration files
  42. file:
  43. path: "{{ item }}"
  44. state: absent
  45. with_items:
  46. - /etc/cni/net.d/200-loopback.conf
  47. - /etc/cni/net.d/100-crio-bridge.conf
  48. - name: Create the CRI-O configuration
  49. template:
  50. dest: /etc/crio/crio.conf
  51. src: crio.conf.j2
  52. backup: yes
  53. - name: Ensure CNI configuration directory exists
  54. file:
  55. path: /etc/cni/net.d/
  56. state: directory
  57. - name: setup firewall for CRI-O
  58. import_tasks: crio_firewall.yml
  59. - name: Configure the CNI network
  60. template:
  61. dest: /etc/cni/net.d/openshift-sdn.conf
  62. src: 80-openshift-sdn.conf.j2
  63. when: r_crio_use_openshift_sdn | bool
  64. - name: Create /etc/sysconfig/crio-storage
  65. copy:
  66. content: ""
  67. dest: /etc/sysconfig/crio-storage
  68. force: no
  69. - name: Create /etc/sysconfig/crio-network
  70. template:
  71. dest: /etc/sysconfig/crio-network
  72. src: crio-network.j2
  73. - name: Configure oci umount for CRI-O
  74. lineinfile:
  75. dest: /etc/oci-umount.conf
  76. line: '{{ item }}'
  77. with_items: "{{ container_runtime_oci_umounts }}"
  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. - import_tasks: common/post.yml
  88. vars:
  89. openshift_docker_alternative_creds: "{{ (openshift_use_crio_only | bool) or (openshift_docker_use_system_container | bool) }}"