summaryrefslogtreecommitdiffstats
path: root/playbooks/common/openshift-cluster/initialize_openshift_version.yml
diff options
context:
space:
mode:
authorJan Chaloupka <jchaloup@redhat.com>2017-03-09 16:35:48 +0100
committerJan Chaloupka <jchaloup@redhat.com>2017-03-09 18:07:13 +0100
commit37ca540a70756cdbbbc42da78b62c6738eb9259b (patch)
treebdde045c6dd99a542c91baac5377afeab7284394 /playbooks/common/openshift-cluster/initialize_openshift_version.yml
parent39e84a426f511d0f415e9b241de0f97bce4faa46 (diff)
downloadopenshift-37ca540a70756cdbbbc42da78b62c6738eb9259b.tar.gz
openshift-37ca540a70756cdbbbc42da78b62c6738eb9259b.tar.bz2
openshift-37ca540a70756cdbbbc42da78b62c6738eb9259b.tar.xz
openshift-37ca540a70756cdbbbc42da78b62c6738eb9259b.zip
re-enable excluders if they are enabled after openshift version detection
Diffstat (limited to 'playbooks/common/openshift-cluster/initialize_openshift_version.yml')
-rw-r--r--playbooks/common/openshift-cluster/initialize_openshift_version.yml8
1 files changed, 8 insertions, 0 deletions
diff --git a/playbooks/common/openshift-cluster/initialize_openshift_version.yml b/playbooks/common/openshift-cluster/initialize_openshift_version.yml
index 7f37c606f..f8981c040 100644
--- a/playbooks/common/openshift-cluster/initialize_openshift_version.yml
+++ b/playbooks/common/openshift-cluster/initialize_openshift_version.yml
@@ -18,12 +18,14 @@
msg: Incompatible versions of yum and subscription-manager found. You may need to update yum and yum-utils.
when: "not openshift.common.is_atomic | bool and 'Plugin \"search-disabled-repos\" requires API 2.7. Supported API is 2.6.' in yum_ver_test.stdout"
+# TODO(jchaloup): find a different way how to make repoquery --qf '%version` atomic-openshift work without disabling the excluders
- include: disable_excluder.yml
vars:
# the excluders needs to be disabled no matter what status says
with_status_check: false
tags:
- always
+ when: openshift_upgrade_target is not defined
- name: Determine openshift_version to configure on first master
hosts: oo_first_master
@@ -39,3 +41,9 @@
openshift_version: "{{ hostvars[groups.oo_first_master.0].openshift_version }}"
roles:
- openshift_version
+
+ # Re-enable excluders if they are meant to be enabled (and only during installation, upgrade disables the excluders before this play)
+- include: reset_excluder.yml
+ tags:
+ - always
+ when: openshift_upgrade_target is not defined