diff options
author | Samuel Munilla <smunilla@redhat.com> | 2016-03-07 14:18:35 -0500 |
---|---|---|
committer | Samuel Munilla <smunilla@redhat.com> | 2016-03-23 13:06:16 -0400 |
commit | eb369effbc557502b7c2ee58950391ae71b809c8 (patch) | |
tree | 7bb3ce320f9ecbd53d9fa3c6f448ffad8566d2e5 /utils/src/ooinstall/variants.py | |
parent | ae78eb0bbe01edd97cd25f13adcce0bf38278ff3 (diff) | |
download | openshift-eb369effbc557502b7c2ee58950391ae71b809c8.tar.gz openshift-eb369effbc557502b7c2ee58950391ae71b809c8.tar.bz2 openshift-eb369effbc557502b7c2ee58950391ae71b809c8.tar.xz openshift-eb369effbc557502b7c2ee58950391ae71b809c8.zip |
a-o-i: Add 3.2 to list of supported versions
Diffstat (limited to 'utils/src/ooinstall/variants.py')
-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 - |