diff options
author | Jason DeTiberus <jdetiber@redhat.com> | 2015-03-18 13:25:18 -0400 |
---|---|---|
committer | Jhon Honce <jhonce@redhat.com> | 2015-03-24 11:23:25 -0700 |
commit | 9575258e5a1b8f9ee8ec7ffc7ad74fa5dfeabc00 (patch) | |
tree | 91452465b425fb09ececa4ea22d08d13dd7261aa /playbooks/gce/openshift-master | |
parent | 13dc8505feb93adc311a4a2d8e714c7d1e61cf1f (diff) | |
download | openshift-9575258e5a1b8f9ee8ec7ffc7ad74fa5dfeabc00.tar.gz openshift-9575258e5a1b8f9ee8ec7ffc7ad74fa5dfeabc00.tar.bz2 openshift-9575258e5a1b8f9ee8ec7ffc7ad74fa5dfeabc00.tar.xz openshift-9575258e5a1b8f9ee8ec7ffc7ad74fa5dfeabc00.zip |
replace oo_hosts_to_config with oo_nodes_to_config and oo_masters_to_config
Diffstat (limited to 'playbooks/gce/openshift-master')
-rw-r--r-- | playbooks/gce/openshift-master/launch.yml | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/playbooks/gce/openshift-master/launch.yml b/playbooks/gce/openshift-master/launch.yml index f2800b061..3512274cc 100644 --- a/playbooks/gce/openshift-master/launch.yml +++ b/playbooks/gce/openshift-master/launch.yml @@ -24,8 +24,8 @@ tags: "{{ oo_new_inst_tags }}" register: gce - - name: Add new instances public IPs to oo_hosts_to_config - add_host: "hostname={{ item.name }} ansible_ssh_host={{ item.public_ip }} groupname=oo_hosts_to_config" + - name: Add new instances public IPs to oo_masters_to_config + add_host: "hostname={{ item.name }} ansible_ssh_host={{ item.public_ip }} groupname=oo_masters_to_config" with_items: gce.instance_data - name: Wait for ssh |