systemcontainer_docker.yml 3.7 KB

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