systemcontainer_docker.yml 6.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190
  1. ---
  2. - set_fact:
  3. l_openshift_image_tag: "{{ openshift_image_tag | string }}"
  4. when: openshift_image_tag is defined
  5. - set_fact:
  6. l_openshift_image_tag: "latest"
  7. when:
  8. - openshift_image_tag is not defined
  9. - openshift_release == "latest"
  10. - set_fact:
  11. l_openshift_image_tag: "{{ openshift_release | string }}"
  12. when:
  13. - openshift_image_tag is not defined
  14. - openshift_release != "latest"
  15. # If docker_options are provided we should fail. We should not install docker and ignore
  16. # the users configuration. NOTE: docker_options == inventory:openshift_docker_options
  17. - name: Fail quickly if openshift_docker_options are set
  18. assert:
  19. that:
  20. - docker_options is defined
  21. - docker_options != ""
  22. msg: |
  23. Docker via System Container does not allow for the use of the openshift_docker_options
  24. variable. If you want to use openshift_docker_options you will need to use the
  25. traditional docker package install. Otherwise, comment out openshift_docker_options
  26. in your inventory file.
  27. - name: Ensure container-selinux is installed
  28. package:
  29. name: container-selinux
  30. state: present
  31. when: not openshift.common.is_atomic | bool
  32. register: result
  33. until: result | success
  34. # Used to pull and install the system container
  35. - name: Ensure atomic is installed
  36. package:
  37. name: atomic
  38. state: present
  39. when: not openshift.common.is_atomic | bool
  40. register: result
  41. until: result | success
  42. # At the time of writing the atomic command requires runc for it's own use. This
  43. # task is here in the even that the atomic package ever removes the dependency.
  44. - name: Ensure runc is installed
  45. package:
  46. name: runc
  47. state: present
  48. when: not openshift.common.is_atomic | bool
  49. register: result
  50. until: result | success
  51. # Make sure Docker is installed so we are able to use the client
  52. - name: Install Docker so we can use the client
  53. package: name=docker{{ '-' + docker_version if docker_version is defined else '' }} state=present
  54. when: not openshift.common.is_atomic | bool
  55. register: result
  56. until: result | success
  57. # Make sure docker is disabled. Errors are ignored.
  58. - name: Disable Docker
  59. systemd:
  60. name: docker
  61. enabled: no
  62. state: stopped
  63. daemon_reload: yes
  64. ignore_errors: True
  65. register: r_docker_systemcontainer_docker_stop_result
  66. until: not r_docker_systemcontainer_docker_stop_result | failed
  67. retries: 3
  68. delay: 30
  69. - name: Ensure proxies are in the atomic.conf
  70. include_role:
  71. name: openshift_atomic
  72. tasks_from: proxy
  73. - block:
  74. - name: Set to default prepend
  75. set_fact:
  76. l_docker_image_prepend: "gscrivano"
  77. l_docker_image_tag: "latest"
  78. - name: Set container engine image tag
  79. set_fact:
  80. l_docker_image_tag: "{{ l_openshift_image_tag }}"
  81. when:
  82. - openshift_deployment_type == 'openshift-enterprise'
  83. - name: Use Red Hat Registry for image when distribution is Red Hat
  84. set_fact:
  85. l_docker_image_prepend: "registry.access.redhat.com/openshift3"
  86. when: ansible_distribution == 'RedHat'
  87. - name: Use Fedora Registry for image when distribution is Fedora
  88. set_fact:
  89. l_docker_image_prepend: "registry.fedoraproject.org/f25"
  90. when: ansible_distribution == 'Fedora'
  91. - name: Set the full image name
  92. set_fact:
  93. l_docker_image: "{{ l_docker_image_prepend }}/{{ openshift.docker.service_name }}:{{ l_docker_image_tag }}"
  94. # For https://github.com/openshift/openshift-ansible/pull/5354#issuecomment-328552959
  95. - name: Use a specific image if requested
  96. set_fact:
  97. l_docker_image: "{{ openshift_docker_systemcontainer_image_override }}"
  98. when:
  99. - openshift_docker_systemcontainer_image_override is defined
  100. - openshift_docker_systemcontainer_image_override != ""
  101. # Be nice and let the user see the variable result
  102. - debug:
  103. var: l_docker_image
  104. # NOTE: no_proxy added as a workaround until https://github.com/projectatomic/atomic/pull/999 is released
  105. - name: Pre-pull Container Engine System Container image
  106. command: "atomic pull --storage ostree {{ l_docker_image }}"
  107. changed_when: false
  108. environment:
  109. NO_PROXY: "{{ openshift.common.no_proxy | default('') }}"
  110. - name: Ensure container-engine.service.d directory exists
  111. file:
  112. path: "{{ container_engine_systemd_dir }}"
  113. state: directory
  114. - name: Ensure /etc/docker directory exists
  115. file:
  116. path: "{{ docker_conf_dir }}"
  117. state: directory
  118. - name: Install Container Engine System Container
  119. oc_atomic_container:
  120. name: "{{ openshift.docker.service_name }}"
  121. image: "{{ l_docker_image }}"
  122. state: latest
  123. - name: Configure Container Engine Service File
  124. template:
  125. dest: "{{ container_engine_systemd_dir }}/custom.conf"
  126. src: systemcontainercustom.conf.j2
  127. # Set local versions of facts that must be in json format for container-daemon.json
  128. # NOTE: When jinja2.9+ is used the container-daemon.json file can move to using tojson
  129. - set_fact:
  130. l_docker_insecure_registries: "{{ l2_docker_insecure_registries | default([]) | to_json }}"
  131. l_docker_log_options: "{{ docker_log_options | default({}) | to_json }}"
  132. l_docker_additional_registries: "{{ l2_docker_additional_registries | default([]) | to_json }}"
  133. l_docker_blocked_registries: "{{ l2_docker_blocked_registries | default([]) | to_json }}"
  134. l_docker_selinux_enabled: "{{ docker_selinux_enabled | default(true) | to_json }}"
  135. # Configure container-engine using the container-daemon.json file
  136. # NOTE: daemon.json and container-daemon.json have been seperated to avoid
  137. # collision.
  138. - name: Configure Container Engine
  139. template:
  140. dest: "{{ docker_conf_dir }}/container-daemon.json"
  141. src: daemon.json
  142. # Enable and start the container-engine service
  143. - name: Start the Container Engine service
  144. systemd:
  145. name: "{{ openshift.docker.service_name }}"
  146. enabled: yes
  147. state: started
  148. daemon_reload: yes
  149. register: r_docker_systemcontainer_docker_start_result
  150. until: not r_docker_systemcontainer_docker_start_result | failed
  151. retries: 3
  152. delay: 30
  153. - set_fact:
  154. docker_service_status_changed: "{{ r_docker_systemcontainer_docker_start_result | changed }}"
  155. - meta: flush_handlers
  156. # Since docker is running as a system container, docker login will fail to create
  157. # credentials. Use alternate method if requiring authenticated registries.
  158. - include_tasks: registry_auth.yml
  159. vars:
  160. openshift_docker_alternative_creds: True