diff options
author | Scott Dodson <sdodson@redhat.com> | 2017-08-18 08:55:59 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-08-18 08:55:59 -0400 |
commit | ea491f041a2a93352543bc774052efc9b2cdcac3 (patch) | |
tree | b806c41575fd7081e421ae487817ebd5f942f742 | |
parent | e5fd5b06af09075a131cd9af3cce4b2ca3252ea6 (diff) | |
parent | 2fa5738e80066f0ae46cb1dafccec906503f5c4a (diff) | |
download | openshift-ea491f041a2a93352543bc774052efc9b2cdcac3.tar.gz openshift-ea491f041a2a93352543bc774052efc9b2cdcac3.tar.bz2 openshift-ea491f041a2a93352543bc774052efc9b2cdcac3.tar.xz openshift-ea491f041a2a93352543bc774052efc9b2cdcac3.zip |
Merge pull request #5132 from BrunoVernay/patch-1
Display "origin 3.6" as in previous installer 3.5
-rw-r--r-- | utils/src/ooinstall/variants.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/utils/src/ooinstall/variants.py b/utils/src/ooinstall/variants.py index 1574d447a..546bf91f8 100644 --- a/utils/src/ooinstall/variants.py +++ b/utils/src/ooinstall/variants.py @@ -61,7 +61,7 @@ LEGACY = Variant('openshift-enterprise', 'OpenShift Container Platform', [ # Ordered list of variants we can install, first is the default. SUPPORTED_VARIANTS = (OSE, REG, origin, LEGACY) -DISPLAY_VARIANTS = (OSE, REG,) +DISPLAY_VARIANTS = (OSE, REG, origin) def find_variant(name, version=None): |