master-scaleup.yml 2.5 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485
  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_resources.yml
  14. - name: Set the new_nodes and new_masters groups
  15. import_playbook: evaluate_groups.yml
  16. - name: Evaluate remaining cluster groups
  17. import_playbook: ../../init/evaluate_groups.yml
  18. - name: Wait for the new nodes and gather their facts
  19. any_errors_fatal: true
  20. hosts: new_nodes:new_masters:new_etcd
  21. become: yes
  22. # NOTE: The nodes may not be up yet, don't gather facts here.
  23. # They'll be collected after `wait_for_connection`.
  24. gather_facts: no
  25. tasks:
  26. - name: Wait for the the new nodes to come up
  27. wait_for_connection:
  28. - name: Gather facts for the new nodes
  29. setup:
  30. - name: Populate the DNS entries for the new nodes
  31. any_errors_fatal: true
  32. hosts: localhost
  33. tasks:
  34. - name: Add DNS records for the newly created nodes
  35. import_role:
  36. name: openshift_openstack
  37. tasks_from: populate-dns.yml
  38. vars:
  39. l_openshift_openstack_dns_update_nodes: "{{ groups.new_nodes }}"
  40. when:
  41. - openshift_openstack_external_nsupdate_keys is defined
  42. - openshift_openstack_external_nsupdate_keys.private is defined or openshift_openstack_external_nsupdate_keys.public is defined
  43. - import_playbook: ../../init/basic_facts.yml
  44. - name: Optionally subscribe the RHEL nodes
  45. any_errors_fatal: true
  46. hosts: new_nodes:new_masters:new_etcd
  47. become: yes
  48. gather_facts: yes
  49. tasks:
  50. - name: Subscribe RHEL instances
  51. import_role:
  52. name: rhel_subscribe
  53. when:
  54. - ansible_distribution == "RedHat"
  55. - rhsub_user is defined
  56. - rhsub_pass is defined
  57. - name: Configure the new OpenStack nodes
  58. import_playbook: configure-new-nodes.yml
  59. - import_playbook: ../../prerequisites.yml
  60. vars:
  61. l_scale_up_hosts: "oo_nodes_to_config:oo_masters_to_config"
  62. l_base_packages_hosts: "oo_nodes_to_config:oo_masters_to_config"
  63. l_init_fact_hosts: "oo_masters:oo_etcd_to_config:oo_lb_to_config:oo_nodes_to_config"
  64. l_sanity_check_hosts: "{{ groups['oo_nodes_to_config'] | union(groups['oo_masters']) }}"
  65. - import_playbook: ../../init/version.yml
  66. vars:
  67. l_openshift_version_set_hosts: "oo_masters_to_config:oo_nodes_to_config:!oo_first_master"
  68. - import_playbook: ../../openshift-master/private/scaleup.yml
  69. - name: Show information about the deployed cluster
  70. import_playbook: cluster-info.yml