config.yml 1.0 KB

12345678910111213141516171819202122232425262728
  1. ---
  2. - hosts: "{{ l_containerized_host_groups }}"
  3. vars:
  4. l_chg_temp: "{{ hostvars[groups['oo_first_master'][0]]['openshift_containerized_host_groups'] | default([]) }}"
  5. l_containerized_host_groups: "{{ (['oo_nodes_to_config'] | union(l_chg_temp)) | join(':') }}"
  6. # role: container_runtime is necessary here to bring role default variables
  7. # into the play scope.
  8. roles:
  9. - role: container_runtime
  10. tasks:
  11. - import_role:
  12. name: container_runtime
  13. tasks_from: package_docker.yml
  14. when:
  15. - not openshift_docker_use_system_container | bool
  16. - not openshift_use_crio_only | bool
  17. - import_role:
  18. name: container_runtime
  19. tasks_from: systemcontainer_docker.yml
  20. when:
  21. - openshift_docker_use_system_container | bool
  22. - not openshift_use_crio_only | bool
  23. - import_role:
  24. name: container_runtime
  25. tasks_from: systemcontainer_crio.yml
  26. when:
  27. - openshift_use_crio | bool
  28. - openshift_docker_is_node_or_master | bool