systemcontainer_crio.yml 3.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134
  1. ---
  2. # TODO: Much of this file is shared with container engine tasks
  3. - set_fact:
  4. l_insecure_crio_registries: "{{ '\"{}\"'.format('\", \"'.join(openshift.docker.insecure_registries)) }}"
  5. when: openshift.docker.insecure_registries
  6. - name: Ensure container-selinux is installed
  7. package:
  8. name: container-selinux
  9. state: present
  10. when: not openshift.common.is_atomic | bool
  11. # Used to pull and install the system container
  12. - name: Ensure atomic is installed
  13. package:
  14. name: atomic
  15. state: present
  16. when: not openshift.common.is_atomic | bool
  17. # At the time of writing the atomic command requires runc for it's own use. This
  18. # task is here in the even that the atomic package ever removes the dependency.
  19. - name: Ensure runc is installed
  20. package:
  21. name: runc
  22. state: present
  23. when: not openshift.common.is_atomic | bool
  24. - name: Check that overlay is in the kernel
  25. shell: lsmod | grep overlay
  26. register: l_has_overlay_in_kernel
  27. ignore_errors: yes
  28. - when: l_has_overlay_in_kernel.rc != 0
  29. block:
  30. - name: Add overlay to modprobe.d
  31. template:
  32. dest: /etc/modules-load.d/overlay.conf
  33. src: overlay.conf.j2
  34. backup: yes
  35. - name: Manually modprobe overlay into the kernel
  36. command: modprobe overlay
  37. - block:
  38. - name: Add http_proxy to /etc/atomic.conf
  39. lineinfile:
  40. dest: /etc/atomic.conf
  41. regexp: "^#?http_proxy[:=]{1}"
  42. line: "http_proxy: {{ openshift.common.http_proxy | default('') }}"
  43. when:
  44. - openshift.common.http_proxy is defined
  45. - openshift.common.http_proxy != ''
  46. - name: Add https_proxy to /etc/atomic.conf
  47. lineinfile:
  48. dest: /etc/atomic.conf
  49. regexp: "^#?https_proxy[:=]{1}"
  50. line: "https_proxy: {{ openshift.common.https_proxy | default('') }}"
  51. when:
  52. - openshift.common.https_proxy is defined
  53. - openshift.common.https_proxy != ''
  54. - name: Add no_proxy to /etc/atomic.conf
  55. lineinfile:
  56. dest: /etc/atomic.conf
  57. regexp: "^#?no_proxy[:=]{1}"
  58. line: "no_proxy: {{ openshift.common.no_proxy | default('') }}"
  59. when:
  60. - openshift.common.no_proxy is defined
  61. - openshift.common.no_proxy != ''
  62. - block:
  63. - name: Set to default prepend
  64. set_fact:
  65. l_crio_image_prepend: "gscrivano"
  66. - name: Use Red Hat Registry for image when distribution is Red Hat
  67. set_fact:
  68. l_crio_image_prepend: "registry.access.redhat.com/openshift3"
  69. when: ansible_distribution == 'RedHat'
  70. - name: Use Fedora Registry for image when distribution is Fedora
  71. set_fact:
  72. l_crio_image_prepend: "registry.fedoraproject.org/f25"
  73. when: ansible_distribution == 'Fedora'
  74. # For https://github.com/openshift/openshift-ansible/pull/4049#discussion_r114478504
  75. - name: Use a testing registry if requested
  76. set_fact:
  77. l_crio_image_prepend: "{{ openshift_docker_systemcontainer_image_registry_override }}"
  78. when:
  79. - openshift_docker_systemcontainer_image_registry_override is defined
  80. - openshift_docker_systemcontainer_image_registry_override != ""
  81. - name: Set the full image name
  82. set_fact:
  83. l_crio_image: "{{ l_crio_image_prepend }}/cri-o:latest"
  84. # NOTE: no_proxy added as a workaround until https://github.com/projectatomic/atomic/pull/999 is released
  85. - name: Pre-pull CRI-O System Container image
  86. command: "atomic pull --storage ostree {{ l_crio_image }}"
  87. changed_when: false
  88. environment:
  89. NO_PROXY: "{{ openshift.common.no_proxy | default('') }}"
  90. - name: Install CRI-O System Container
  91. oc_atomic_container:
  92. name: "cri-o"
  93. image: "{{ l_crio_image }}"
  94. state: latest
  95. - name: Create the CRI-O configuration
  96. template:
  97. dest: /etc/crio/crio.conf
  98. src: crio.conf.j2
  99. backup: yes
  100. - name: Start the CRI-O service
  101. systemd:
  102. name: "cri-o"
  103. enabled: yes
  104. state: started
  105. daemon_reload: yes
  106. register: start_result
  107. - meta: flush_handlers