scaleup.yml 642 B

12345678910111213141516171819202122
  1. ---
  2. - import_playbook: ../init/evaluate_groups.yml
  3. - name: Ensure there are new_masters or new_nodes
  4. hosts: localhost
  5. connection: local
  6. gather_facts: no
  7. tasks:
  8. - fail:
  9. msg: >
  10. Detected no new_masters or no new_nodes in inventory. Please
  11. add hosts to the new_masters and new_nodes host groups to add
  12. masters.
  13. when:
  14. - g_new_master_hosts | default([]) | length == 0
  15. - g_new_node_hosts | default([]) | length == 0
  16. # Need a better way to do the above check for node without
  17. # running evaluate_groups and init/main.yml
  18. - import_playbook: ../init/main.yml
  19. - import_playbook: private/scaleup.yml