scaleup.yml 2.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051
  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. # We need to ensure container_runtime is only processed for containerized
  28. # etcd hosts by setting l_build_container_groups_hosts and l_etcd_scale_up_hosts
  29. l_build_container_groups_hosts: "oo_new_etcd_to_config"
  30. l_etcd_scale_up_hosts: "oo_hosts_containerized_managed_true"
  31. l_scale_up_hosts: "oo_new_etcd_to_config"
  32. l_init_fact_hosts: "oo_masters_to_config:oo_etcd_to_config:oo_lb_to_config:oo_new_etcd_to_config"
  33. l_sanity_check_hosts: "{{ groups['oo_new_etcd_to_config'] | union(groups['oo_masters_to_config']) | union(groups['oo_etcd_to_config']) }}"
  34. when:
  35. - inventory_hostname not in groups['oo_masters']
  36. - inventory_hostname not in groups['oo_nodes_to_config']
  37. # If this etcd host is part of a master or node, we don't need to run
  38. # prerequisites, we can just init facts as normal.
  39. - import_playbook: ../init/main.yml
  40. vars:
  41. skip_verison: True
  42. l_init_fact_hosts: "oo_masters_to_config:oo_etcd_to_config:oo_lb_to_config:oo_new_etcd_to_config"
  43. when:
  44. - inventory_hostname in groups['oo_masters']
  45. - inventory_hostname in groups['oo_nodes_to_config']
  46. - import_playbook: private/scaleup.yml