diff options
author | Jan Chaloupka <jchaloup@redhat.com> | 2017-04-07 16:07:57 +0200 |
---|---|---|
committer | Jan Chaloupka <jchaloup@redhat.com> | 2017-05-03 15:45:16 +0200 |
commit | ba67bf5e155b81d5f313f6e8492ffd5d3b583286 (patch) | |
tree | b9b33dd6886f64bc8dcc8a93caf4feb4ea2dca12 /playbooks/common/openshift-cluster/config.yml | |
parent | 0a195fb83ecd592ca0b2c897dc240298cd64a75e (diff) | |
download | openshift-ba67bf5e155b81d5f313f6e8492ffd5d3b583286.tar.gz openshift-ba67bf5e155b81d5f313f6e8492ffd5d3b583286.tar.bz2 openshift-ba67bf5e155b81d5f313f6e8492ffd5d3b583286.tar.xz openshift-ba67bf5e155b81d5f313f6e8492ffd5d3b583286.zip |
run excluders over selected set of hosts during control_plane/node upgrade
Disable/reset excluders over requested hosts
Diffstat (limited to 'playbooks/common/openshift-cluster/config.yml')
-rw-r--r-- | playbooks/common/openshift-cluster/config.yml | 16 |
1 files changed, 14 insertions, 2 deletions
diff --git a/playbooks/common/openshift-cluster/config.yml b/playbooks/common/openshift-cluster/config.yml index 239bb211b..c320b80ed 100644 --- a/playbooks/common/openshift-cluster/config.yml +++ b/playbooks/common/openshift-cluster/config.yml @@ -3,9 +3,15 @@ tags: - always -- include: disable_excluder.yml +- name: Disable excluders + hosts: oo_masters_to_config:oo_nodes_to_config tags: - always + gather_facts: no + tasks: + - include_role: + name: openshift_excluder + tasks_from: disable - include: ../openshift-etcd/config.yml tags: @@ -39,6 +45,12 @@ tags: - hosted -- include: reset_excluder.yml +- name: Re-enable excluder if it was previously enabled + hosts: oo_masters_to_config:oo_nodes_to_config tags: - always + gather_facts: no + tasks: + - include_role: + name: openshift_excluder + tasks_from: enable |