master-scaleup.yml 1.2 KB

123456789101112131415161718192021222324252627282930313233343536
  1. ---
  2. - name: Save groups before scaling
  3. any_errors_fatal: true
  4. hosts: localhost
  5. connection: local
  6. gather_facts: no
  7. become: no
  8. tasks:
  9. - name: Save the node groups to openshift_openstack_existing
  10. set_fact:
  11. openshift_openstack_existing: "{{ groups }}"
  12. - name: Create the new OpenStack resources
  13. import_playbook: provision.yml
  14. - name: Set the new_nodes and new_masters groups
  15. import_playbook: evaluate_groups.yml
  16. # TODO: run DNS update and RHEL registration only on new_nodes here. That
  17. # means we can call `provision_resources.yml` above.
  18. - name: Configure the new OpenStack nodes
  19. import_playbook: configure-new-nodes.yml
  20. - import_playbook: ../../prerequisites.yml
  21. vars:
  22. l_scale_up_hosts: "oo_nodes_to_config:oo_masters_to_config"
  23. l_base_packages_hosts: "oo_nodes_to_config:oo_masters_to_config"
  24. l_init_fact_hosts: "oo_masters:oo_etcd_to_config:oo_lb_to_config:oo_nodes_to_config"
  25. l_sanity_check_hosts: "{{ groups['oo_nodes_to_config'] | union(groups['oo_masters']) }}"
  26. - import_playbook: ../../init/version.yml
  27. vars:
  28. l_openshift_version_set_hosts: "oo_masters_to_config:oo_nodes_to_config:!oo_first_master"
  29. - import_playbook: ../../openshift-master/private/scaleup.yml