setup_storage.yml 995 B

1234567891011121314151617181920212223
  1. ---
  2. # l_scale_up_hosts may be passed in via prerequisites.yml during scaleup plays.
  3. # l_etcd_scale_up_crt_hosts may be passed in via prerequisites.yml during etcd
  4. # scaleup plays.
  5. - hosts: "{{ l_etcd_scale_up_crt_hosts | default(l_scale_up_hosts) | default('oo_nodes_to_config') }}"
  6. vars:
  7. l_chg_temp: "{{ hostvars[groups['oo_first_master'][0]]['openshift_containerized_host_groups'] | default([]) }}"
  8. l_containerized_host_groups: "{{ (['oo_nodes_to_config'] | union(l_chg_temp)) | join(':') }}"
  9. # role: container_runtime is necessary here to bring role default variables
  10. # into the play scope.
  11. roles:
  12. - role: container_runtime
  13. tasks:
  14. - import_role:
  15. name: container_runtime
  16. tasks_from: docker_storage_setup_overlay.yml
  17. when:
  18. - container_runtime_docker_storage_type|default('') == "overlay2"
  19. - openshift_docker_is_node_or_master | bool
  20. - import_role:
  21. name: container_runtime
  22. tasks_from: extra_storage_setup.yml