summaryrefslogtreecommitdiffstats
path: root/utils
diff options
context:
space:
mode:
authorBrenton Leanhardt <bleanhar@redhat.com>2016-04-01 14:30:07 -0400
committerBrenton Leanhardt <bleanhar@redhat.com>2016-04-01 14:30:07 -0400
commit6e2b6fa5f33520bf2d692a486183e2e6cb994fb7 (patch)
tree7f1ebf5caac9a1f362a98d6077759654f668a6b6 /utils
parentff86a5d3e4caa6eaba2d77833278998105bd9fd0 (diff)
parented80207fa5c08a567710f0a670e96ecbf903ca9c (diff)
downloadopenshift-6e2b6fa5f33520bf2d692a486183e2e6cb994fb7.tar.gz
openshift-6e2b6fa5f33520bf2d692a486183e2e6cb994fb7.tar.bz2
openshift-6e2b6fa5f33520bf2d692a486183e2e6cb994fb7.tar.xz
openshift-6e2b6fa5f33520bf2d692a486183e2e6cb994fb7.zip
Merge pull request #1653 from smunilla/BZ1320017
a-o-i: OSE/AEP 3.2 product option
Diffstat (limited to 'utils')
-rw-r--r--utils/src/ooinstall/variants.py3
1 files changed, 2 insertions, 1 deletions
diff --git a/utils/src/ooinstall/variants.py b/utils/src/ooinstall/variants.py
index 571025543..9d98379bb 100644
--- a/utils/src/ooinstall/variants.py
+++ b/utils/src/ooinstall/variants.py
@@ -36,6 +36,7 @@ class Variant(object):
# WARNING: Keep the versions ordered, most recent last:
OSE = Variant('openshift-enterprise', 'OpenShift Enterprise',
[
+ Version('3.2', 'openshift-enterprise'),
Version('3.1', 'openshift-enterprise'),
Version('3.0', 'enterprise')
]
@@ -43,6 +44,7 @@ OSE = Variant('openshift-enterprise', 'OpenShift Enterprise',
AEP = Variant('atomic-enterprise', 'Atomic Enterprise Platform',
[
+ Version('3.2', 'atomic-enterprise'),
Version('3.1', 'atomic-enterprise')
]
)
@@ -74,4 +76,3 @@ def get_variant_version_combos():
for ver in variant.versions:
combos.append((variant, ver))
return combos
-