scaleup.yml 543 B

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