add_hosts.yml 934 B

1234567891011121314151617181920212223
  1. ---
  2. # This play runs when new gluster hosts are part of new_nodes group during
  3. # master or node scaleup.
  4. # Need to gather facts on glusterfs hosts to ensure we collect openshift.node.nodename
  5. # for topology file.
  6. - import_playbook: ../../init/basic_facts.yml
  7. vars:
  8. l_init_fact_hosts: "glusterfs:glusterfs_registry"
  9. - import_playbook: ../../init/cluster_facts.yml
  10. vars:
  11. l_init_fact_hosts: "glusterfs:glusterfs_registry"
  12. - import_playbook: gluster_hosts.yml
  13. vars:
  14. # we only want the intersection of new_nodes and gluster hosts here.
  15. l_glusterfs_hosts: "oo_glusterfs_to_config:&oo_nodes_to_config"
  16. - import_playbook: update_topology.yml
  17. vars:
  18. l_gluster_reload_topo: "{{ groups['oo_nodes_to_config'] | intersect(groups['glusterfs'] | default([])) | length > 0 }}"
  19. l_gluster_registry_reload_topo: "{{ groups['oo_nodes_to_config'] | intersect(groups['glusterfs_registry'] | default([])) | length > 0 }}"