Browse Source

Fix preupgrade authorization objects are in sync

Currently, this task is executed based on openshift_version.

openshift_version is based on the upgrade target, thus not
the currently install versions.

This commit ensures that the task executes as intended.

Fixes: https://bugzilla.redhat.com/show_bug.cgi?id=1508301
Michael Gugino 7 years ago
parent
commit
45f01526ef
1 changed files with 1 additions and 1 deletions
  1. 1 1
      playbooks/common/openshift-cluster/upgrades/v3_7/validator.yml

+ 1 - 1
playbooks/common/openshift-cluster/upgrades/v3_7/validator.yml

@@ -15,7 +15,7 @@
   - name: Confirm OpenShift authorization objects are in sync
     command: >
       {{ openshift.common.client_binary }} adm migrate authorization
-    when: openshift_version | version_compare('3.7','<')
+    when: openshift_upgrade_target | version_compare('3.8','<')
     changed_when: false
     register: l_oc_result
     until: l_oc_result.rc == 0