main.yml 2.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293
  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_tasks: 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_tasks: 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_tasks: 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_tasks: 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.islnk is defined and not (dockerstat.stat.islnk | bool)
  47. block:
  48. - name: stop the current running docker
  49. systemd:
  50. state: stopped
  51. name: "{{ openshift.docker.service_name }}"
  52. - name: copy "{{ docker_default_storage_path }}" to "{{ docker_alt_storage_path }}"
  53. command: "cp -r {{ docker_default_storage_path }} {{ docker_alt_storage_path }}"
  54. register: results
  55. failed_when:
  56. - results.rc != 0
  57. - name: "Set the selinux context on {{ docker_alt_storage_path }}"
  58. command: "semanage fcontext -a -e {{ docker_default_storage_path }} {{ docker_alt_storage_path }}"
  59. register: results
  60. failed_when:
  61. - results.rc == 1
  62. - "'already exists' not in results.stderr"
  63. - name: "restorecon the {{ docker_alt_storage_path }}"
  64. command: "restorecon -r {{ docker_alt_storage_path }}"
  65. - name: Remove the old docker location
  66. file:
  67. state: absent
  68. path: "{{ docker_default_storage_path }}"
  69. - name: Setup the link
  70. file:
  71. state: link
  72. src: "{{ docker_alt_storage_path }}"
  73. path: "{{ docker_default_storage_path }}"
  74. - name: start docker
  75. systemd:
  76. state: started
  77. name: "{{ openshift.docker.service_name }}"