setup_storage.yml 1009 B

123456789101112131415161718192021
  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(l_default_container_storage_hosts) }}"
  6. vars:
  7. l_default_container_storage_hosts: "oo_nodes_to_config:oo_hosts_containerized_managed_true"
  8. l_chg_temp: "{{ hostvars[groups['oo_first_master'][0]]['openshift_containerized_host_groups'] | default([]) }}"
  9. l_containerized_host_groups: "{{ (['oo_nodes_to_config'] | union(l_chg_temp)) | join(':') }}"
  10. # role: container_runtime is necessary here to bring role default variables
  11. # into the play scope.
  12. roles:
  13. - role: container_runtime
  14. tasks:
  15. - import_role:
  16. name: container_runtime
  17. tasks_from: docker_storage_setup_overlay.yml
  18. when:
  19. - container_runtime_docker_storage_type|default('') == "overlay2"
  20. - openshift_docker_is_node_or_master | bool