summaryrefslogtreecommitdiffstats
path: root/utils/src
diff options
context:
space:
mode:
Diffstat (limited to 'utils/src')
-rw-r--r--utils/src/ooinstall/variants.py11
1 files changed, 9 insertions, 2 deletions
diff --git a/utils/src/ooinstall/variants.py b/utils/src/ooinstall/variants.py
index 10bad5f2a..b32370cd5 100644
--- a/utils/src/ooinstall/variants.py
+++ b/utils/src/ooinstall/variants.py
@@ -37,7 +37,6 @@ class Variant(object):
OSE = Variant('openshift-enterprise', 'OpenShift Container Platform',
[
Version('3.3', 'openshift-enterprise'),
- Version('3.2', 'openshift-enterprise'),
]
)
@@ -47,8 +46,16 @@ origin = Variant('origin', 'OpenShift Origin',
]
)
+LEGACY = Variant('openshift-enterprise', 'OpenShift Container Platform',
+ [
+ Version('3.2', 'openshift-enterprise'),
+ Version('3.1', 'openshift-enterprise'),
+ Version('3.0', 'openshift-enterprise'),
+ ]
+)
+
# Ordered list of variants we can install, first is the default.
-SUPPORTED_VARIANTS = (OSE, origin)
+SUPPORTED_VARIANTS = (OSE, origin, LEGACY)
DISPLAY_VARIANTS = (OSE, )
def find_variant(name, version=None):