scaleup.yml 2.0 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950
  1. ---
  2. - import_playbook: ../init/evaluate_groups.yml
  3. - name: Ensure there are new_etcd
  4. hosts: localhost
  5. connection: local
  6. gather_facts: no
  7. tasks:
  8. - fail:
  9. msg: >
  10. Detected no new_etcd in inventory. Please add hosts to the
  11. new_etcd host group to add etcd hosts.
  12. when:
  13. - g_new_etcd_hosts | default([]) | length == 0
  14. - fail:
  15. msg: >
  16. Detected new_etcd host is member of new_masters or new_nodes. Please
  17. run playbooks/openshift-master/scaleup.yml or
  18. playbooks/openshift-node/scaleup.yml before running this play.
  19. when: >
  20. inventory_hostname in (groups['new_masters'] | default([]))
  21. or inventory_hostname in (groups['new_nodes'] | default([]))
  22. # We only need to run this if etcd is being installed on a standalone host;
  23. # If etcd is part of master or node group, there's no need to
  24. # re-run prerequisites
  25. - import_playbook: ../prerequisites.yml
  26. vars:
  27. l_etcd_scale_up_crt_hosts: "all:!all"
  28. l_scale_up_hosts: "oo_new_etcd_to_config"
  29. l_base_packages_hosts: "oo_new_etcd_to_config"
  30. l_init_fact_hosts: "oo_masters_to_config:oo_etcd_to_config:oo_lb_to_config:oo_new_etcd_to_config"
  31. l_sanity_check_hosts: "{{ groups['oo_new_etcd_to_config'] | union(groups['oo_masters_to_config']) | union(groups['oo_etcd_to_config']) }}"
  32. when:
  33. - inventory_hostname not in groups['oo_masters']
  34. - inventory_hostname not in groups['oo_nodes_to_config']
  35. # If this etcd host is part of a master or node, we don't need to run
  36. # prerequisites, we can just init facts as normal.
  37. - import_playbook: ../init/main.yml
  38. vars:
  39. l_init_fact_hosts: "oo_masters_to_config:oo_etcd_to_config:oo_lb_to_config:oo_new_etcd_to_config"
  40. l_sanity_check_hosts: "{{ groups['oo_new_etcd_to_config'] | union(groups['oo_masters_to_config']) | union(groups['oo_etcd_to_config']) }}"
  41. l_openshift_version_set_hosts: "all:!all"
  42. when:
  43. - inventory_hostname in groups['oo_masters']
  44. - inventory_hostname in groups['oo_nodes_to_config']
  45. - import_playbook: private/scaleup.yml