scaleup.yml 1.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445
  1. ---
  2. - import_playbook: ../init/evaluate_groups.yml
  3. - name: Ensure there are new_masters and new_nodes
  4. hosts: localhost
  5. connection: local
  6. gather_facts: no
  7. tasks:
  8. - fail:
  9. # new_masters must be part of new_nodes as well; otherwise if new_nodes
  10. # is not present, oo_nodes_to_config will contain all existing nodes.
  11. msg: >
  12. Detected no new_masters and/or no new_nodes in inventory. New
  13. masters must be part of both new_masters and new_nodes groups.
  14. If you are adding just new_nodes, use the
  15. playbooks/openshift-node/scaleup.yml play.
  16. when: >
  17. g_new_master_hosts | default([]) | length == 0
  18. or g_new_node_hosts | default([]) | length == 0
  19. - name: Ensure there are new_masters and new_nodes
  20. hosts: oo_masters_to_config
  21. connection: local
  22. gather_facts: no
  23. tasks:
  24. - fail:
  25. # new_masters must be part of new_nodes as well;
  26. msg: >
  27. Each host in new_masters must also appear in new_nodes
  28. when: inventory_hostname not in groups['oo_nodes_to_config']
  29. - import_playbook: ../prerequisites.yml
  30. vars:
  31. l_scale_up_hosts: "oo_nodes_to_config:oo_masters_to_config"
  32. l_base_packages_hosts: "oo_nodes_to_config:oo_masters_to_config"
  33. # oo_masters contains both existing and new masters; oo_masters_to_config just new.
  34. l_init_fact_hosts: "oo_masters:oo_etcd_to_config:oo_lb_to_config:oo_nodes_to_config"
  35. l_sanity_check_hosts: "{{ groups['oo_nodes_to_config'] | union(groups['oo_masters']) }}"
  36. l_networkman_check_hosts: "oo_nodes_to_config"
  37. - import_playbook: ../init/version.yml
  38. vars:
  39. l_openshift_version_set_hosts: "oo_masters_to_config:oo_nodes_to_config:!oo_first_master"
  40. - import_playbook: private/scaleup.yml