summaryrefslogtreecommitdiffstats
path: root/utils/src
diff options
context:
space:
mode:
authorSamuel Munilla <smunilla@redhat.com>2016-10-27 13:37:38 -0400
committerSamuel Munilla <smunilla@redhat.com>2016-10-27 13:37:38 -0400
commit88fb16dc79a0286b88913f8bf9a05d487eb5c631 (patch)
tree44fa70dfef9f3e26a94893a167cf13a8b3ca1465 /utils/src
parentc2328b5d7b71a99bd6051ebecd8b6d297be97712 (diff)
downloadopenshift-88fb16dc79a0286b88913f8bf9a05d487eb5c631.tar.gz
openshift-88fb16dc79a0286b88913f8bf9a05d487eb5c631.tar.bz2
openshift-88fb16dc79a0286b88913f8bf9a05d487eb5c631.tar.xz
openshift-88fb16dc79a0286b88913f8bf9a05d487eb5c631.zip
Update variant_version
Update the quick installer to correctly set the new version. Fixes Bug 1388762
Diffstat (limited to 'utils/src')
-rw-r--r--utils/src/ooinstall/variants.py7
1 files changed, 4 insertions, 3 deletions
diff --git a/utils/src/ooinstall/variants.py b/utils/src/ooinstall/variants.py
index 6993794fe..39772bb2e 100644
--- a/utils/src/ooinstall/variants.py
+++ b/utils/src/ooinstall/variants.py
@@ -40,24 +40,25 @@ class Variant(object):
# WARNING: Keep the versions ordered, most recent first:
OSE = Variant('openshift-enterprise', 'OpenShift Container Platform',
[
- Version('3.3', 'openshift-enterprise'),
+ Version('3.4', 'openshift-enterprise'),
]
)
REG = Variant('openshift-enterprise', 'Registry',
[
- Version('3.3', 'openshift-enterprise', 'registry'),
+ Version('3.4', 'openshift-enterprise', 'registry'),
]
)
origin = Variant('origin', 'OpenShift Origin',
[
- Version('1.2', 'origin'),
+ Version('1.4', 'origin'),
]
)
LEGACY = Variant('openshift-enterprise', 'OpenShift Container Platform',
[
+ Version('3.3', 'openshift-enterprise'),
Version('3.2', 'openshift-enterprise'),
Version('3.1', 'openshift-enterprise'),
Version('3.0', 'openshift-enterprise'),