diff options
| author | Andrew Butcher <abutcher@redhat.com> | 2016-05-05 16:06:24 -0400 | 
|---|---|---|
| committer | Andrew Butcher <abutcher@redhat.com> | 2016-05-05 16:30:04 -0400 | 
| commit | 2eef772ed6266d9a3b8fde429510998d8c968e0a (patch) | |
| tree | b081b3cad5fcda1d052a99f678eec62beb2518ec /playbooks/byo/openshift-cluster | |
| parent | b55268ba29f436a2ade9643adf195d23145d0826 (diff) | |
| download | openshift-2eef772ed6266d9a3b8fde429510998d8c968e0a.tar.gz openshift-2eef772ed6266d9a3b8fde429510998d8c968e0a.tar.bz2 openshift-2eef772ed6266d9a3b8fde429510998d8c968e0a.tar.xz openshift-2eef772ed6266d9a3b8fde429510998d8c968e0a.zip | |
Remove vars_files on play includes for byo, scaleup and restart playbooks.
Diffstat (limited to 'playbooks/byo/openshift-cluster')
| -rw-r--r-- | playbooks/byo/openshift-cluster/config.yml | 18 | 
1 files changed, 16 insertions, 2 deletions
| diff --git a/playbooks/byo/openshift-cluster/config.yml b/playbooks/byo/openshift-cluster/config.yml index 5887b3208..c5479d098 100644 --- a/playbooks/byo/openshift-cluster/config.yml +++ b/playbooks/byo/openshift-cluster/config.yml @@ -1,7 +1,21 @@  --- +- hosts: localhost +  connection: local +  become: no +  gather_facts: no +  tasks: +  - include_vars: ../../byo/openshift-cluster/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: ../../byo/openshift-cluster/cluster_hosts.yml +  - include: ../../common/openshift-cluster/config.yml -  vars_files: -  - ../../byo/openshift-cluster/cluster_hosts.yml    vars:      openshift_cluster_id: "{{ cluster_id | default('default') }}"      openshift_debug_level: "{{ debug_level | default(2) }}" | 
