diff options
author | Jason DeTiberus <detiber@gmail.com> | 2017-01-29 00:05:13 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-01-29 00:05:13 -0500 |
commit | e11ecff826aba160fee68c35f954eb86f92d670f (patch) | |
tree | 780d0428cbea6a0b8e903b776104cf88fe3d32b4 /playbooks/common/openshift-cluster/upgrades | |
parent | 9231620fc6007b2c35f859929f67242954d0d77e (diff) | |
parent | f606ccc1623a422878ab48b4451124453c7c6ded (diff) | |
download | openshift-e11ecff826aba160fee68c35f954eb86f92d670f.tar.gz openshift-e11ecff826aba160fee68c35f954eb86f92d670f.tar.bz2 openshift-e11ecff826aba160fee68c35f954eb86f92d670f.tar.xz openshift-e11ecff826aba160fee68c35f954eb86f92d670f.zip |
Merge pull request #3215 from mtnbikenc/std-play-naming
Standardize entry-point playbooks with named plays
Diffstat (limited to 'playbooks/common/openshift-cluster/upgrades')
-rw-r--r-- | playbooks/common/openshift-cluster/upgrades/init.yml | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/playbooks/common/openshift-cluster/upgrades/init.yml b/playbooks/common/openshift-cluster/upgrades/init.yml index 235853b0f..b62557550 100644 --- a/playbooks/common/openshift-cluster/upgrades/init.yml +++ b/playbooks/common/openshift-cluster/upgrades/init.yml @@ -1,9 +1,11 @@ --- -- name: Create l_oo_all_hosts group +- name: Create initial host groups for localhost hosts: localhost connection: local become: no gather_facts: no + tags: + - always tasks: - include_vars: ../../../byo/openshift-cluster/cluster_hosts.yml - name: Evaluate group l_oo_all_hosts @@ -13,9 +15,11 @@ with_items: "{{ g_all_hosts | default([]) }}" changed_when: False -- name: Include g_*_hosts vars for hosts in group l_oo_all_hosts +- name: Create initial host groups for all hosts hosts: l_oo_all_hosts gather_facts: no + tags: + - always tasks: - include_vars: ../../../byo/openshift-cluster/cluster_hosts.yml |