systemcontainer_crio.yml 4.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173
  1. ---
  2. # TODO: Much of this file is shared with container engine tasks
  3. - set_fact:
  4. l_insecure_crio_registries: "{{ '\"{}\"'.format('\", \"'.join(l2_docker_insecure_registries)) }}"
  5. when: l2_docker_insecure_registries
  6. - set_fact:
  7. l_crio_registries: "{{ l2_docker_additional_registries + ['docker.io'] }}"
  8. when: l2_docker_additional_registries
  9. - set_fact:
  10. l_crio_registries: "{{ ['docker.io'] }}"
  11. when: not l2_docker_additional_registries
  12. - set_fact:
  13. l_additional_crio_registries: "{{ '\"{}\"'.format('\", \"'.join(l_crio_registries)) }}"
  14. when: l2_docker_additional_registries
  15. - name: Ensure container-selinux is installed
  16. package:
  17. name: container-selinux
  18. state: present
  19. when: not openshift.common.is_atomic | bool
  20. # Used to pull and install the system container
  21. - name: Ensure atomic is installed
  22. package:
  23. name: atomic
  24. state: present
  25. when: not openshift.common.is_atomic | bool
  26. # At the time of writing the atomic command requires runc for it's own use. This
  27. # task is here in the even that the atomic package ever removes the dependency.
  28. - name: Ensure runc is installed
  29. package:
  30. name: runc
  31. state: present
  32. when: not openshift.common.is_atomic | bool
  33. - name: Check that overlay is in the kernel
  34. shell: lsmod | grep overlay
  35. register: l_has_overlay_in_kernel
  36. ignore_errors: yes
  37. - when: l_has_overlay_in_kernel.rc != 0
  38. block:
  39. - name: Add overlay to modprobe.d
  40. template:
  41. dest: /etc/modules-load.d/overlay.conf
  42. src: overlay.conf.j2
  43. backup: yes
  44. - name: Manually modprobe overlay into the kernel
  45. command: modprobe overlay
  46. - name: Enable and start systemd-modules-load
  47. service:
  48. name: systemd-modules-load
  49. enabled: yes
  50. state: restarted
  51. - block:
  52. - name: Add http_proxy to /etc/atomic.conf
  53. lineinfile:
  54. dest: /etc/atomic.conf
  55. regexp: "^#?http_proxy[:=]{1}"
  56. line: "http_proxy: {{ openshift.common.http_proxy | default('') }}"
  57. when:
  58. - openshift.common.http_proxy is defined
  59. - openshift.common.http_proxy != ''
  60. - name: Add https_proxy to /etc/atomic.conf
  61. lineinfile:
  62. dest: /etc/atomic.conf
  63. regexp: "^#?https_proxy[:=]{1}"
  64. line: "https_proxy: {{ openshift.common.https_proxy | default('') }}"
  65. when:
  66. - openshift.common.https_proxy is defined
  67. - openshift.common.https_proxy != ''
  68. - name: Add no_proxy to /etc/atomic.conf
  69. lineinfile:
  70. dest: /etc/atomic.conf
  71. regexp: "^#?no_proxy[:=]{1}"
  72. line: "no_proxy: {{ openshift.common.no_proxy | default('') }}"
  73. when:
  74. - openshift.common.no_proxy is defined
  75. - openshift.common.no_proxy != ''
  76. - block:
  77. - name: Set to default prepend
  78. set_fact:
  79. l_crio_image_prepend: "docker.io/gscrivano"
  80. l_crio_image_name: "cri-o-fedora"
  81. - name: Use Centos based image when distribution is CentOS
  82. set_fact:
  83. l_crio_image_name: "cri-o-centos"
  84. when: ansible_distribution == "CentOS"
  85. - name: Use RHEL based image when distribution is Red Hat
  86. set_fact:
  87. l_crio_image_prepend: "registry.access.redhat.com/openshift3"
  88. l_crio_image_name: "cri-o"
  89. when: ansible_distribution == "RedHat"
  90. - name: Set the full image name
  91. set_fact:
  92. l_crio_image: "{{ l_crio_image_prepend }}/{{ l_crio_image_name }}:latest"
  93. # For https://github.com/openshift/aos-cd-jobs/pull/624#pullrequestreview-61816548
  94. - name: Use a specific image if requested
  95. set_fact:
  96. l_crio_image: "{{ openshift_crio_systemcontainer_image_override }}"
  97. when:
  98. - openshift_crio_systemcontainer_image_override is defined
  99. - openshift_crio_systemcontainer_image_override != ""
  100. # Be nice and let the user see the variable result
  101. - debug:
  102. var: l_crio_image
  103. # NOTE: no_proxy added as a workaround until https://github.com/projectatomic/atomic/pull/999 is released
  104. - name: Pre-pull CRI-O System Container image
  105. command: "atomic pull --storage ostree {{ l_crio_image }}"
  106. changed_when: false
  107. environment:
  108. NO_PROXY: "{{ openshift.common.no_proxy | default('') }}"
  109. - name: Install CRI-O System Container
  110. oc_atomic_container:
  111. name: "cri-o"
  112. image: "{{ l_crio_image }}"
  113. state: latest
  114. - name: Remove CRI-o default configuration files
  115. file:
  116. path: "{{ item }}"
  117. state: absent
  118. with_items:
  119. - /etc/cni/net.d/200-loopback.conf
  120. - /etc/cni/net.d/100-crio-bridge.conf
  121. - name: Create the CRI-O configuration
  122. template:
  123. dest: /etc/crio/crio.conf
  124. src: crio.conf.j2
  125. backup: yes
  126. - name: Ensure CNI configuration directory exists
  127. file:
  128. path: /etc/cni/net.d/
  129. state: directory
  130. - name: Configure the CNI network
  131. template:
  132. dest: /etc/cni/net.d/openshift-sdn.conf
  133. src: 80-openshift-sdn.conf.j2
  134. - name: Start the CRI-O service
  135. systemd:
  136. name: "cri-o"
  137. enabled: yes
  138. state: started
  139. daemon_reload: yes
  140. register: start_result
  141. - meta: flush_handlers