main.yml 1.3 KB

1234567891011121314151617181920212223242526272829303132333435363738
  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: Use System Container Docker if Requested
  24. include: systemcontainer_docker.yml
  25. when:
  26. - l_use_system_container
  27. - not l_use_crio_only
  28. - name: Add CRI-O usage Requested
  29. include: systemcontainer_crio.yml
  30. when:
  31. - l_use_crio
  32. - inventory_hostname in groups['oo_masters_to_config'] or inventory_hostname in groups['oo_nodes_to_config']