diff options
author | Jason DeTiberus <jdetiber@redhat.com> | 2015-11-24 14:34:12 -0500 |
---|---|---|
committer | Jason DeTiberus <jdetiber@redhat.com> | 2015-11-24 14:34:12 -0500 |
commit | 4ffde064c126e54930f776c727ab91b8c150166d (patch) | |
tree | 51fd4fd611fbb1a1a25b33dc4928a4af6906df6b /playbooks/aws/openshift-cluster/tasks | |
parent | 6fa3dc760065e622efca6ce33fcf838177bcadff (diff) | |
download | openshift-4ffde064c126e54930f776c727ab91b8c150166d.tar.gz openshift-4ffde064c126e54930f776c727ab91b8c150166d.tar.bz2 openshift-4ffde064c126e54930f776c727ab91b8c150166d.tar.xz openshift-4ffde064c126e54930f776c727ab91b8c150166d.zip |
start of aws scaleup
Diffstat (limited to 'playbooks/aws/openshift-cluster/tasks')
-rw-r--r-- | playbooks/aws/openshift-cluster/tasks/launch_instances.yml | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/playbooks/aws/openshift-cluster/tasks/launch_instances.yml b/playbooks/aws/openshift-cluster/tasks/launch_instances.yml index 22c617fea..15e775770 100644 --- a/playbooks/aws/openshift-cluster/tasks/launch_instances.yml +++ b/playbooks/aws/openshift-cluster/tasks/launch_instances.yml @@ -190,6 +190,22 @@ - instances - ec2.instances +- name: Add new instances to nodes_to_add group if needed + add_host: + hostname: "{{ item.0 }}" + ansible_ssh_host: "{{ item.1.dns_name }}" + ansible_ssh_user: "{{ deployment_vars[deployment_type].ssh_user }}" + ansible_sudo: "{{ deployment_vars[deployment_type].sudo }}" + groups: nodes_to_add + ec2_private_ip_address: "{{ item.1.private_ip }}" + ec2_ip_address: "{{ item.1.public_ip }}" + openshift_node_labels: "{{ node_label }}" + logrotate_scripts: "{{ logrotate }}" + with_together: + - instances + - ec2.instances + when: oo_extend_env is defined and oo_extend_env | bool + - name: Wait for ssh wait_for: "port=22 host={{ item.dns_name }}" with_items: ec2.instances |