systemcontainer_docker.yml 3.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101
  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. - include_tasks: common/pre.yml
  14. - include_tasks: common/syscontainer_packages.yml
  15. # Make sure Docker is installed so we are able to use the client
  16. - name: Install Docker so we can use the client
  17. package: name=docker{{ '-' + docker_version if docker_version is defined else '' }} state=present
  18. when: not openshift.common.is_atomic | bool
  19. register: result
  20. until: result is succeeded
  21. # Make sure docker is disabled. Errors are ignored.
  22. - name: Disable Docker
  23. systemd:
  24. name: docker
  25. enabled: no
  26. state: stopped
  27. daemon_reload: yes
  28. ignore_errors: True
  29. register: r_docker_systemcontainer_docker_stop_result
  30. until: not (r_docker_systemcontainer_docker_stop_result is failed)
  31. retries: 3
  32. delay: 30
  33. - name: Ensure proxies are in the atomic.conf
  34. include_tasks: common/atomic_proxy.yml
  35. # Be nice and let the user see the variable result
  36. - debug:
  37. var: l_docker_image
  38. # NOTE: no_proxy added as a workaround until https://github.com/projectatomic/atomic/pull/999 is released
  39. - name: Pre-pull Container Engine System Container image
  40. command: "atomic pull --storage ostree {{ l_docker_image }}"
  41. changed_when: false
  42. environment:
  43. NO_PROXY: "{{ docker_no_proxy }}"
  44. - name: Ensure container-engine.service.d directory exists
  45. file:
  46. path: "{{ container_engine_systemd_dir }}"
  47. state: directory
  48. - name: Ensure /etc/docker directory exists
  49. file:
  50. path: "{{ docker_conf_dir }}"
  51. state: directory
  52. - name: Install Container Engine System Container
  53. oc_atomic_container:
  54. name: "{{ openshift_docker_service_name }}"
  55. image: "{{ l_docker_image }}"
  56. state: latest
  57. - name: Configure Container Engine Service File
  58. template:
  59. dest: "{{ container_engine_systemd_dir }}/custom.conf"
  60. src: systemcontainercustom.conf.j2
  61. # Configure container-engine using the container-daemon.json file
  62. # NOTE: daemon.json and container-daemon.json have been seperated to avoid
  63. # collision.
  64. - name: Configure Container Engine
  65. template:
  66. dest: "{{ docker_conf_dir }}/container-daemon.json"
  67. src: daemon.json
  68. # Enable and start the container-engine service
  69. - name: Start the Container Engine service
  70. systemd:
  71. name: "{{ openshift_docker_service_name }}"
  72. enabled: yes
  73. state: started
  74. daemon_reload: yes
  75. register: r_docker_systemcontainer_docker_start_result
  76. until: not (r_docker_systemcontainer_docker_start_result is failed)
  77. retries: 3
  78. delay: 30
  79. - set_fact:
  80. docker_service_status_changed: "{{ r_docker_systemcontainer_docker_start_result is changed }}"
  81. # Since docker is running as a system container, docker login will fail to create
  82. # credentials. Use alternate method if requiring authenticated registries.
  83. - include_tasks: common/post.yml
  84. vars:
  85. openshift_docker_alternative_creds: True