diff options
author | Samuel Munilla <smunilla@redhat.com> | 2016-03-23 13:05:04 -0400 |
---|---|---|
committer | Samuel Munilla <smunilla@redhat.com> | 2016-03-23 13:05:04 -0400 |
commit | ed80207fa5c08a567710f0a670e96ecbf903ca9c (patch) | |
tree | a65444fdf70133e8dff7040d1a36e75b833ef0c9 | |
parent | 5d4c9a01cdd4bbb76bf644549ce6efc2ac0cfc8a (diff) | |
download | openshift-ed80207fa5c08a567710f0a670e96ecbf903ca9c.tar.gz openshift-ed80207fa5c08a567710f0a670e96ecbf903ca9c.tar.bz2 openshift-ed80207fa5c08a567710f0a670e96ecbf903ca9c.tar.xz openshift-ed80207fa5c08a567710f0a670e96ecbf903ca9c.zip |
a-o-i: OSE/AEP 3.2 product option
Adds the option to select 3.2 in the quick-installer
-rw-r--r-- | utils/src/ooinstall/variants.py | 3 |
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 - |