scaleup.yml 365 B

12345678910111213141516
  1. ---
  2. - name: Pre-scaleup checks
  3. hosts: localhost
  4. connection: local
  5. gather_facts: no
  6. tasks:
  7. - fail:
  8. msg: >
  9. Detected no new_workers in inventory. Please add hosts to the
  10. new_workers host group to add nodes.
  11. when: groups.new_workers | default([]) | length == 0
  12. - name: install nodes
  13. hosts: new_workers
  14. roles:
  15. - openshift_node