diff options
| author | Scott Dodson <sdodson@redhat.com> | 2017-05-02 20:39:33 -0400 | 
|---|---|---|
| committer | GitHub <noreply@github.com> | 2017-05-02 20:39:33 -0400 | 
| commit | 42d68b49d6e57949b4dec7840c15c9137b30f70c (patch) | |
| tree | 9680da3b7b6be7549f28b92ecab94bcc11311a67 | |
| parent | 62bc69756269bfe1142dd00c8ba63d2b035c64be (diff) | |
| parent | c71e4e2c83675c7a29be20b272ac76866548ada6 (diff) | |
Merge pull request #4068 from mtnbikenc/fix-variants
Fix variants for v3.6
| -rw-r--r-- | utils/src/ooinstall/variants.py | 7 | 
1 files changed, 4 insertions, 3 deletions
diff --git a/utils/src/ooinstall/variants.py b/utils/src/ooinstall/variants.py index f25266f29..1574d447a 100644 --- a/utils/src/ooinstall/variants.py +++ b/utils/src/ooinstall/variants.py @@ -39,18 +39,19 @@ class Variant(object):  # WARNING: Keep the versions ordered, most recent first:  OSE = Variant('openshift-enterprise', 'OpenShift Container Platform', [ -    Version('3.5', 'openshift-enterprise'), +    Version('3.6', 'openshift-enterprise'),  ])  REG = Variant('openshift-enterprise', 'Registry', [ -    Version('3.4', 'openshift-enterprise', 'registry'), +    Version('3.6', 'openshift-enterprise', 'registry'),  ])  origin = Variant('origin', 'OpenShift Origin', [ -    Version('1.4', 'origin'), +    Version('3.6', 'origin'),  ])  LEGACY = Variant('openshift-enterprise', 'OpenShift Container Platform', [ +    Version('3.5', 'openshift-enterprise'),      Version('3.4', 'openshift-enterprise'),      Version('3.3', 'openshift-enterprise'),      Version('3.2', 'openshift-enterprise'),  | 
