scaleup.yml 597 B

1234567891011121314151617181920
  1. ---
  2. - include: ../openshift-cluster/initialize_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) and (g_new_node_hosts | default([]) | length == 0)
  16. - include: ../../common/openshift-cluster/std_include.yml
  17. - include: ../../common/openshift-master/scaleup.yml