scaleup.yml 1.3 KB

123456789101112131415161718192021222324252627282930313233343536
  1. ---
  2. - hosts: localhost
  3. gather_facts: no
  4. connection: local
  5. become: no
  6. vars_files:
  7. - vars.yml
  8. tasks:
  9. - set_fact:
  10. g_ssh_user_tmp: "{{ deployment_vars[deployment_type].ssh_user }}"
  11. g_sudo_tmp: "{{ deployment_vars[deployment_type].sudo }}"
  12. - name: Evaluate oo_hosts_to_update
  13. add_host:
  14. name: "{{ item }}"
  15. groups: oo_hosts_to_update
  16. ansible_ssh_user: "{{ deployment_vars[deployment_type].ssh_user }}"
  17. ansible_sudo: "{{ deployment_vars[deployment_type].sudo }}"
  18. with_items: "{{ groups.nodes_to_add }}"
  19. - include: ../../common/openshift-cluster/update_repos_and_packages.yml
  20. - include: ../../common/openshift-cluster/scaleup.yml
  21. vars:
  22. g_etcd_group: "{{ 'tag_env-host-type_' ~ cluster_id ~ '-openshift-etcd' }}"
  23. g_lb_group: "{{ 'tag_env-host-type_' ~ cluster_id ~ '-openshift-lb' }}"
  24. g_masters_group: "{{ 'tag_env-host-type_' ~ cluster_id ~ '-openshift-master' }}"
  25. g_new_nodes_group: 'nodes_to_add'
  26. g_ssh_user: "{{ hostvars.localhost.g_ssh_user_tmp }}"
  27. g_sudo: "{{ hostvars.localhost.g_sudo_tmp }}"
  28. g_nodeonmaster: true
  29. openshift_cluster_id: "{{ cluster_id }}"
  30. openshift_debug_level: 2
  31. openshift_deployment_type: "{{ deployment_type }}"
  32. openshift_hostname: "{{ ec2_private_ip_address }}"
  33. openshift_public_hostname: "{{ ec2_ip_address }}"