diff options
author | Jason DeTiberus <jdetiber@redhat.com> | 2016-04-29 17:13:11 -0400 |
---|---|---|
committer | Jason DeTiberus <jdetiber@redhat.com> | 2016-05-05 21:23:19 -0400 |
commit | ed869237f676a6a68df83cc6a379110ab6a91770 (patch) | |
tree | d15268568ec19179fe134327c39bc4a31ced6ef3 /playbooks/gce/openshift-cluster/update.yml | |
parent | 866bab53db58352d56e33b8d97ce3b982a850cb9 (diff) | |
download | openshift-ed869237f676a6a68df83cc6a379110ab6a91770.tar.gz openshift-ed869237f676a6a68df83cc6a379110ab6a91770.tar.bz2 openshift-ed869237f676a6a68df83cc6a379110ab6a91770.tar.xz openshift-ed869237f676a6a68df83cc6a379110ab6a91770.zip |
gce fixes
Diffstat (limited to 'playbooks/gce/openshift-cluster/update.yml')
-rw-r--r-- | playbooks/gce/openshift-cluster/update.yml | 19 |
1 files changed, 16 insertions, 3 deletions
diff --git a/playbooks/gce/openshift-cluster/update.yml b/playbooks/gce/openshift-cluster/update.yml index 9b7a2777a..6d2af3d26 100644 --- a/playbooks/gce/openshift-cluster/update.yml +++ b/playbooks/gce/openshift-cluster/update.yml @@ -1,12 +1,25 @@ --- +- hosts: localhost + gather_facts: no + tasks: + - include_vars: vars.yml + - include_vars: cluster_hosts.yml + - add_host: + name: "{{ item }}" + groups: l_oo_all_hosts + with_items: "{{ g_all_hosts }}" + +- hosts: l_oo_all_hosts + gather_facts: no + tasks: + - include_vars: vars.yml + - include_vars: cluster_hosts.yml + - name: Populate oo_hosts_to_update group hosts: localhost connection: local become: no gather_facts: no - vars_files: - - vars.yml - - cluster_hosts.yml tasks: - name: Evaluate oo_hosts_to_update add_host: |