summaryrefslogtreecommitdiffstats
path: root/utils/src
diff options
context:
space:
mode:
authorScott Dodson <sdodson@redhat.com>2016-11-01 10:14:54 -0400
committerGitHub <noreply@github.com>2016-11-01 10:14:54 -0400
commite977242d747f11a0771f4593a936704802ca3f94 (patch)
treed8166852c520a276af89104b8277fa4438f00813 /utils/src
parentdd668a2365a63684aecbfc56ca05457f77654e33 (diff)
parent88fb16dc79a0286b88913f8bf9a05d487eb5c631 (diff)
downloadopenshift-e977242d747f11a0771f4593a936704802ca3f94.tar.gz
openshift-e977242d747f11a0771f4593a936704802ca3f94.tar.bz2
openshift-e977242d747f11a0771f4593a936704802ca3f94.tar.xz
openshift-e977242d747f11a0771f4593a936704802ca3f94.zip
Merge pull request #2678 from smunilla/BZ1388762
Only tests that matters passed.
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'),