diff options
author | Brenton Leanhardt <bleanhar@redhat.com> | 2016-04-01 14:30:07 -0400 |
---|---|---|
committer | Brenton Leanhardt <bleanhar@redhat.com> | 2016-04-01 14:30:07 -0400 |
commit | 6e2b6fa5f33520bf2d692a486183e2e6cb994fb7 (patch) | |
tree | 7f1ebf5caac9a1f362a98d6077759654f668a6b6 | |
parent | ff86a5d3e4caa6eaba2d77833278998105bd9fd0 (diff) | |
parent | ed80207fa5c08a567710f0a670e96ecbf903ca9c (diff) | |
download | openshift-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
-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 - |