systemcontainer_docker.yml 5.3 KB

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