scaleup.yml 1.6 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647
  1. ---
  2. - hosts: localhost
  3. gather_facts: no
  4. connection: local
  5. become: no
  6. vars_files:
  7. - vars.yml
  8. - cluster_hosts.yml
  9. tasks:
  10. - set_fact:
  11. g_ssh_user_tmp: "{{ deployment_vars[deployment_type].ssh_user }}"
  12. g_sudo_tmp: "{{ deployment_vars[deployment_type].sudo }}"
  13. g_etcd_hosts: "{{ etcd_hosts }}"
  14. g_master_hosts: "{{ master_hosts }}"
  15. g_node_hosts: "{{ node_hosts }}"
  16. g_lb_hosts: "{{ lb_hosts }}"
  17. - name: Evaluate oo_hosts_to_update
  18. add_host:
  19. name: "{{ item }}"
  20. groups: oo_hosts_to_update
  21. ansible_ssh_user: "{{ deployment_vars[deployment_type].ssh_user }}"
  22. ansible_sudo: "{{ deployment_vars[deployment_type].sudo }}"
  23. with_items: "{{ groups.nodes_to_add }}"
  24. - include: ../../common/openshift-cluster/update_repos_and_packages.yml
  25. - include: ../../common/openshift-cluster/scaleup.yml
  26. vars:
  27. g_etcd_hosts: "{{ hostvars.localhost.g_etcd_hosts }}"
  28. g_master_hosts: "{{ hostvars.localhost.g_master_hosts }}"
  29. g_node_hosts: "{{ hostvars.localhost.g_node_hosts }}"
  30. g_lb_hosts: "{{ hostvars.localhost.g_lb_hosts }}"
  31. g_etcd_hosts: "{{ etcd_hosts }}"
  32. g_lb_hosts: "{{ lb_hosts }}"
  33. g_master_hosts: "{{ master_hosts }}"
  34. g_node_hosts: "{{ node_hosts }}"
  35. g_new_node_hosts: "{{ groups.nodes_to_add }}"
  36. g_ssh_user: "{{ hostvars.localhost.g_ssh_user_tmp }}"
  37. g_sudo: "{{ hostvars.localhost.g_sudo_tmp }}"
  38. g_nodeonmaster: true
  39. openshift_cluster_id: "{{ cluster_id }}"
  40. openshift_debug_level: 2
  41. openshift_deployment_type: "{{ deployment_type }}"
  42. openshift_hostname: "{{ ec2_private_ip_address }}"
  43. openshift_public_hostname: "{{ ec2_ip_address }}"