diff options
author | Scott Dodson <sdodson@redhat.com> | 2017-03-16 15:42:18 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-03-16 15:42:18 -0400 |
commit | 313e906fe208e482aad6f5fc4b1ea0594ef52082 (patch) | |
tree | 124fbce563640bbf9de05302864d56e75af767b2 /playbooks/common/openshift-cluster | |
parent | e42f0fb9258a87046ded4a25ade90b9d9ddb17ba (diff) | |
parent | 99ecae9c1d5349ca4e31baebfe4291f0dc150ed5 (diff) | |
download | openshift-313e906fe208e482aad6f5fc4b1ea0594ef52082.tar.gz openshift-313e906fe208e482aad6f5fc4b1ea0594ef52082.tar.bz2 openshift-313e906fe208e482aad6f5fc4b1ea0594ef52082.tar.xz openshift-313e906fe208e482aad6f5fc4b1ea0594ef52082.zip |
Merge pull request #3675 from sdodson/only_use_excluders_on_masters_nodes
Only call excluder playbooks on masters and nodes
Diffstat (limited to 'playbooks/common/openshift-cluster')
3 files changed, 3 insertions, 3 deletions
diff --git a/playbooks/common/openshift-cluster/disable_excluder.yml b/playbooks/common/openshift-cluster/disable_excluder.yml index b2e025cb8..68bffb5f5 100644 --- a/playbooks/common/openshift-cluster/disable_excluder.yml +++ b/playbooks/common/openshift-cluster/disable_excluder.yml @@ -1,6 +1,6 @@ --- - name: Record excluder state and disable - hosts: l_oo_all_hosts + hosts: oo_masters_to_config:oo_nodes_to_config gather_facts: no tasks: diff --git a/playbooks/common/openshift-cluster/reset_excluder.yml b/playbooks/common/openshift-cluster/reset_excluder.yml index 7c544ee32..eaa8ce39c 100644 --- a/playbooks/common/openshift-cluster/reset_excluder.yml +++ b/playbooks/common/openshift-cluster/reset_excluder.yml @@ -1,6 +1,6 @@ --- - name: Re-enable excluder if it was previously enabled - hosts: l_oo_all_hosts + hosts: oo_masters_to_config:oo_nodes_to_config gather_facts: no tasks: - include_role: diff --git a/playbooks/common/openshift-cluster/upgrades/disable_excluder.yml b/playbooks/common/openshift-cluster/upgrades/disable_excluder.yml index 2a85dc92e..d1e431c5e 100644 --- a/playbooks/common/openshift-cluster/upgrades/disable_excluder.yml +++ b/playbooks/common/openshift-cluster/upgrades/disable_excluder.yml @@ -1,6 +1,6 @@ --- - name: Record excluder state and disable - hosts: l_oo_all_hosts + hosts: oo_masters_to_config:oo_nodes_to_config gather_facts: no tasks: - include: pre/validate_excluder.yml |