scaleup.yml 659 B

1234567891011121314151617181920212223
  1. ---
  2. - include: ../../init/evaluate_groups.yml
  3. - name: Ensure there are new_masters or 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_masters or no new_nodes in inventory. Please
  12. add hosts to the new_masters and new_nodes host groups to add
  13. masters.
  14. when:
  15. - g_new_master_hosts | default([]) | length == 0
  16. - g_new_node_hosts | default([]) | length == 0
  17. # Need a better way to do the above check for node without
  18. # running evaluate_groups and init/main.yml
  19. - include: ../../init/main.yml
  20. - include: ../../common/openshift-master/scaleup.yml