scaleup.yml 528 B

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