systemcontainer_crio.yml 4.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161
  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. - set_fact:
  7. l_crio_registries: "{{ openshift.docker.additional_registries + ['docker.io'] }}"
  8. when: openshift.docker.additional_registries
  9. - set_fact:
  10. l_crio_registries: "{{ ['docker.io'] }}"
  11. when: not openshift.docker.additional_registries
  12. - set_fact:
  13. l_additional_crio_registries: "{{ '\"{}\"'.format('\", \"'.join(l_crio_registries)) }}"
  14. when: openshift.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: "crio-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"
  88. l_crio_image_name: "cri-o"
  89. when: ansible_distribution == "RedHat"
  90. # For https://github.com/openshift/openshift-ansible/pull/4049#discussion_r114478504
  91. - name: Use a testing registry if requested
  92. set_fact:
  93. l_crio_image_prepend: "{{ openshift_crio_systemcontainer_image_registry_override }}"
  94. when:
  95. - openshift_crio_systemcontainer_image_registry_override is defined
  96. - openshift_crio_systemcontainer_image_registry_override != ""
  97. - name: Set the full image name
  98. set_fact:
  99. l_crio_image: "{{ l_crio_image_prepend }}/{{ l_crio_image_name }}:latest"
  100. # NOTE: no_proxy added as a workaround until https://github.com/projectatomic/atomic/pull/999 is released
  101. - name: Pre-pull CRI-O System Container image
  102. command: "atomic pull --storage ostree {{ l_crio_image }}"
  103. changed_when: false
  104. environment:
  105. NO_PROXY: "{{ openshift.common.no_proxy | default('') }}"
  106. - name: Install CRI-O System Container
  107. oc_atomic_container:
  108. name: "cri-o"
  109. image: "{{ l_crio_image }}"
  110. state: latest
  111. - name: Create the CRI-O configuration
  112. template:
  113. dest: /etc/crio/crio.conf
  114. src: crio.conf.j2
  115. backup: yes
  116. - name: Ensure CNI configuration directory exists
  117. file:
  118. path: /etc/cni/net.d/
  119. state: directory
  120. - name: Configure the CNI network
  121. template:
  122. dest: /etc/cni/net.d/openshift-sdn.conf
  123. src: 80-openshift-sdn.conf.j2
  124. - name: Start the CRI-O service
  125. systemd:
  126. name: "cri-o"
  127. enabled: yes
  128. state: started
  129. daemon_reload: yes
  130. register: start_result
  131. - meta: flush_handlers