setup_storage.yml 1.0 KB

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