diff options
author | Scott Dodson <sdodson@redhat.com> | 2017-02-14 16:15:31 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-02-14 16:15:31 -0500 |
commit | 9ab5683896630267fa26f94c2859727227f49a73 (patch) | |
tree | 9a1a508fc3d35bf8c15daea275568b7b21cb2365 | |
parent | 36bcb7e8a5068b584ee337e10133e56d2eaeccde (diff) | |
parent | a3551d945d191de94974cec1747a01ba8012ad20 (diff) | |
download | openshift-9ab5683896630267fa26f94c2859727227f49a73.tar.gz openshift-9ab5683896630267fa26f94c2859727227f49a73.tar.bz2 openshift-9ab5683896630267fa26f94c2859727227f49a73.tar.xz openshift-9ab5683896630267fa26f94c2859727227f49a73.zip |
Merge pull request #3362 from ashcrow/1421033
Update variant_version
-rw-r--r-- | utils/src/ooinstall/variants.py | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/utils/src/ooinstall/variants.py b/utils/src/ooinstall/variants.py index a45be98bf..f25266f29 100644 --- a/utils/src/ooinstall/variants.py +++ b/utils/src/ooinstall/variants.py @@ -39,7 +39,7 @@ class Variant(object): # WARNING: Keep the versions ordered, most recent first: OSE = Variant('openshift-enterprise', 'OpenShift Container Platform', [ - Version('3.4', 'openshift-enterprise'), + Version('3.5', 'openshift-enterprise'), ]) REG = Variant('openshift-enterprise', 'Registry', [ @@ -51,6 +51,7 @@ origin = Variant('origin', 'OpenShift Origin', [ ]) LEGACY = Variant('openshift-enterprise', 'OpenShift Container Platform', [ + Version('3.4', 'openshift-enterprise'), Version('3.3', 'openshift-enterprise'), Version('3.2', 'openshift-enterprise'), Version('3.1', 'openshift-enterprise'), |