Explorar o código

Merge pull request #1653 from smunilla/BZ1320017

a-o-i: OSE/AEP 3.2 product option
Brenton Leanhardt %!s(int64=9) %!d(string=hai) anos
pai
achega
6e2b6fa5f3
Modificáronse 1 ficheiros con 2 adicións e 1 borrados
  1. 2 1
      utils/src/ooinstall/variants.py

+ 2 - 1
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
-