summaryrefslogtreecommitdiffstats
path: root/utils
diff options
context:
space:
mode:
authorScott Dodson <sdodson@redhat.com>2017-05-02 20:39:33 -0400
committerGitHub <noreply@github.com>2017-05-02 20:39:33 -0400
commit42d68b49d6e57949b4dec7840c15c9137b30f70c (patch)
tree9680da3b7b6be7549f28b92ecab94bcc11311a67 /utils
parent62bc69756269bfe1142dd00c8ba63d2b035c64be (diff)
parentc71e4e2c83675c7a29be20b272ac76866548ada6 (diff)
downloadopenshift-42d68b49d6e57949b4dec7840c15c9137b30f70c.tar.gz
openshift-42d68b49d6e57949b4dec7840c15c9137b30f70c.tar.bz2
openshift-42d68b49d6e57949b4dec7840c15c9137b30f70c.tar.xz
openshift-42d68b49d6e57949b4dec7840c15c9137b30f70c.zip
Merge pull request #4068 from mtnbikenc/fix-variants
Fix variants for v3.6
Diffstat (limited to 'utils')
-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 f25266f29..1574d447a 100644
--- a/utils/src/ooinstall/variants.py
+++ b/utils/src/ooinstall/variants.py
@@ -39,18 +39,19 @@ class Variant(object):
# WARNING: Keep the versions ordered, most recent first:
OSE = Variant('openshift-enterprise', 'OpenShift Container Platform', [
- Version('3.5', 'openshift-enterprise'),
+ Version('3.6', 'openshift-enterprise'),
])
REG = Variant('openshift-enterprise', 'Registry', [
- Version('3.4', 'openshift-enterprise', 'registry'),
+ Version('3.6', 'openshift-enterprise', 'registry'),
])
origin = Variant('origin', 'OpenShift Origin', [
- Version('1.4', 'origin'),
+ Version('3.6', 'origin'),
])
LEGACY = Variant('openshift-enterprise', 'OpenShift Container Platform', [
+ Version('3.5', 'openshift-enterprise'),
Version('3.4', 'openshift-enterprise'),
Version('3.3', 'openshift-enterprise'),
Version('3.2', 'openshift-enterprise'),