systemcontainer_crio.yml 4.1 KB

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