main.yml 2.7 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192
  1. ---
  2. # These tasks dispatch to the proper set of docker tasks based on the
  3. # inventory:openshift_docker_use_system_container variable
  4. - include: udev_workaround.yml
  5. when: docker_udev_workaround | default(False) | bool
  6. - set_fact:
  7. l_use_system_container: "{{ openshift.docker.use_system_container | default(False) }}"
  8. l_use_crio: "{{ openshift_use_crio | default(False) }}"
  9. l_use_crio_only: "{{ openshift_use_crio_only | default(False) }}"
  10. - name: Add enterprise registry, if necessary
  11. set_fact:
  12. l2_docker_additional_registries: "{{ l2_docker_additional_registries + [openshift_docker_ent_reg] }}"
  13. when:
  14. - openshift.common.deployment_type == 'openshift-enterprise'
  15. - openshift_docker_ent_reg != ''
  16. - openshift_docker_ent_reg not in l2_docker_additional_registries
  17. - not l_use_crio_only
  18. - name: Use Package Docker if Requested
  19. include: package_docker.yml
  20. when:
  21. - not l_use_system_container
  22. - not l_use_crio_only
  23. - name: Ensure /var/lib/containers exists
  24. file:
  25. path: /var/lib/containers
  26. state: directory
  27. - name: Fix SELinux Permissions on /var/lib/containers
  28. command: "restorecon -R /var/lib/containers/"
  29. changed_when: false
  30. - name: Use System Container Docker if Requested
  31. include: systemcontainer_docker.yml
  32. when:
  33. - l_use_system_container
  34. - not l_use_crio_only
  35. - name: Add CRI-O usage Requested
  36. include: systemcontainer_crio.yml
  37. when:
  38. - l_use_crio
  39. - openshift_docker_is_node_or_master | bool
  40. - name: stat the docker data dir
  41. stat:
  42. path: "{{ docker_default_storage_path }}"
  43. register: dockerstat
  44. - when:
  45. - l_use_crio
  46. - dockerstat.stat.islink is defined and not (dockerstat.stat.islink | bool)
  47. block:
  48. - name: stop the current running docker
  49. systemd:
  50. state: stopped
  51. name: "{{ openshift.docker.service_name }}"
  52. - name: "Ensure {{ docker_alt_storage_path }} exists"
  53. file:
  54. path: "{{ docker_alt_storage_path }}"
  55. state: directory
  56. - name: "Set the selinux context on {{ docker_alt_storage_path }}"
  57. command: "semanage fcontext -a -e {{ docker_default_storage_path }} {{ docker_alt_storage_path }}"
  58. register: results
  59. failed_when:
  60. - results.rc == 1
  61. - "'already exists' not in results.stderr"
  62. - name: "restorecon the {{ docker_alt_storage_path }}"
  63. command: "restorecon -r {{ docker_alt_storage_path }}"
  64. - name: Remove the old docker location
  65. file:
  66. state: absent
  67. path: "{{ docker_default_storage_path }}"
  68. - name: Setup the link
  69. file:
  70. state: link
  71. src: "{{ docker_alt_storage_path }}"
  72. path: "{{ docker_default_storage_path }}"
  73. - name: start docker
  74. systemd:
  75. state: started
  76. name: "{{ openshift.docker.service_name }}"