diff options
author | Brenton Leanhardt <bleanhar@redhat.com> | 2015-11-24 17:02:18 -0500 |
---|---|---|
committer | Brenton Leanhardt <bleanhar@redhat.com> | 2015-11-24 17:02:18 -0500 |
commit | e3071fd15f70214fe9f13b847f2cc5443716d955 (patch) | |
tree | 15d4f7ee4996c279e32fc9e47be851f7ed7336dd /playbooks/aws/openshift-cluster/scaleup.yml | |
parent | 31112d2b69819a20f7f5edaec2a49749559921b4 (diff) | |
parent | 05f63f022d1a42da6b5a34ae58c1eda745757b7c (diff) | |
download | openshift-e3071fd15f70214fe9f13b847f2cc5443716d955.tar.gz openshift-e3071fd15f70214fe9f13b847f2cc5443716d955.tar.bz2 openshift-e3071fd15f70214fe9f13b847f2cc5443716d955.tar.xz openshift-e3071fd15f70214fe9f13b847f2cc5443716d955.zip |
Merge pull request #968 from detiber/fixScaleup2
Improve scaleup playbook
Diffstat (limited to 'playbooks/aws/openshift-cluster/scaleup.yml')
-rw-r--r-- | playbooks/aws/openshift-cluster/scaleup.yml | 34 |
1 files changed, 34 insertions, 0 deletions
diff --git a/playbooks/aws/openshift-cluster/scaleup.yml b/playbooks/aws/openshift-cluster/scaleup.yml new file mode 100644 index 000000000..4415700a3 --- /dev/null +++ b/playbooks/aws/openshift-cluster/scaleup.yml @@ -0,0 +1,34 @@ +--- + +- hosts: localhost + gather_facts: no + vars_files: + - vars.yml + tasks: + - set_fact: + g_ssh_user_tmp: "{{ deployment_vars[deployment_type].ssh_user }}" + g_sudo_tmp: "{{ deployment_vars[deployment_type].sudo }}" + - name: Evaluate oo_hosts_to_update + add_host: + name: "{{ item }}" + groups: oo_hosts_to_update + ansible_ssh_user: "{{ deployment_vars[deployment_type].ssh_user }}" + ansible_sudo: "{{ deployment_vars[deployment_type].sudo }}" + with_items: "{{ groups.nodes_to_add }}" + +- include: ../../common/openshift-cluster/update_repos_and_packages.yml + +- include: ../../common/openshift-cluster/scaleup.yml + vars: + g_etcd_group: "{{ 'tag_env-host-type_' ~ cluster_id ~ '-openshift-etcd' }}" + g_lb_group: "{{ 'tag_env-host-type_' ~ cluster_id ~ '-openshift-lb' }}" + g_masters_group: "{{ 'tag_env-host-type_' ~ cluster_id ~ '-openshift-master' }}" + g_new_nodes_group: 'nodes_to_add' + g_ssh_user: "{{ hostvars.localhost.g_ssh_user_tmp }}" + g_sudo: "{{ hostvars.localhost.g_sudo_tmp }}" + g_nodeonmaster: true + openshift_cluster_id: "{{ cluster_id }}" + openshift_debug_level: 2 + openshift_deployment_type: "{{ deployment_type }}" + openshift_hostname: "{{ ec2_private_ip_address }}" + openshift_public_hostname: "{{ ec2_ip_address }}" |