diff options
author | Scott Dodson <sdodson@redhat.com> | 2016-07-19 17:07:34 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2016-07-19 17:07:34 -0400 |
commit | f76e35767f060f30de99efcfa8d0e058fad8b88e (patch) | |
tree | 5396632c59c578ec42800f289ea9ddd811567f8d /playbooks/common/openshift-cluster | |
parent | 3c8e14992fe764bd9381f4758cb011a18b62b77b (diff) | |
parent | 37ce5323345c0241fe6cce8e48b7bd4cce119bb5 (diff) | |
download | openshift-f76e35767f060f30de99efcfa8d0e058fad8b88e.tar.gz openshift-f76e35767f060f30de99efcfa8d0e058fad8b88e.tar.bz2 openshift-f76e35767f060f30de99efcfa8d0e058fad8b88e.tar.xz openshift-f76e35767f060f30de99efcfa8d0e058fad8b88e.zip |
Merge pull request #2175 from dgoodwin/origin-12-rpm-upgrade
Fix bugs with origin 1.2 rpm based upgrades.
Diffstat (limited to 'playbooks/common/openshift-cluster')
-rw-r--r-- | playbooks/common/openshift-cluster/upgrades/v3_1_to_v3_2/pre.yml | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/playbooks/common/openshift-cluster/upgrades/v3_1_to_v3_2/pre.yml b/playbooks/common/openshift-cluster/upgrades/v3_1_to_v3_2/pre.yml index 7a8dfdf91..a27b62971 100644 --- a/playbooks/common/openshift-cluster/upgrades/v3_1_to_v3_2/pre.yml +++ b/playbooks/common/openshift-cluster/upgrades/v3_1_to_v3_2/pre.yml @@ -87,7 +87,7 @@ # Request openshift_release 3.2 and let the openshift_version role handle converting this # to a more specific version, respecting openshift_image_tag and openshift_pkg_version if # defined, and overriding the normal behavior of protecting the installed version - openshift_release: "3.2" + openshift_release: "{{ '1.2' if deployment_type == 'origin' else '3.2' }}" openshift_protect_installed_version: False # Docker role (a dependency) should be told not to do anything to installed version # of docker, we handle this separately during upgrade. (the inventory may have a @@ -176,8 +176,12 @@ - name: Verify OpenShift 3.2 RPMs are available for upgrade fail: msg: "OpenShift {{ avail_openshift_version.stdout }} is available, but 3.2 or greater is required" - when: not openshift.common.is_containerized | bool and not avail_openshift_version | skipped and avail_openshift_version.stdout | default('0.0', True) | version_compare('3.2', '<') + when: deployment_type != 'origin' and not openshift.common.is_containerized | bool and not avail_openshift_version | skipped and avail_openshift_version.stdout | default('0.0', True) | version_compare(openshift_release, '<') + - name: Verify Origin 1.2 RPMs are available for upgrade + fail: + msg: "OpenShift {{ avail_openshift_version.stdout }} is available, but 1.2 or greater is required" + when: deployment_type == 'origin' and not openshift.common.is_containerized | bool and not avail_openshift_version | skipped and avail_openshift_version.stdout | default('0.0', True) | version_compare(openshift_release, '<') # TODO: Are these two grep checks necessary anymore? # Note: the version number is hardcoded here in hopes of catching potential |