diff options
author | Bruno Vernay <brunovern.a@gmail.com> | 2017-08-18 11:18:51 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-08-18 11:18:51 +0200 |
commit | 2fa5738e80066f0ae46cb1dafccec906503f5c4a (patch) | |
tree | 0e3574dd11d91a413c3037155e80ae56b7309ab8 /utils | |
parent | eedee4481030c8a34c27e7c426671e508f0f8909 (diff) | |
download | openshift-2fa5738e80066f0ae46cb1dafccec906503f5c4a.tar.gz openshift-2fa5738e80066f0ae46cb1dafccec906503f5c4a.tar.bz2 openshift-2fa5738e80066f0ae46cb1dafccec906503f5c4a.tar.xz openshift-2fa5738e80066f0ae46cb1dafccec906503f5c4a.zip |
Display "origin 3.6" as in previous installer 3.5
Previous installer release v3.5 used to display the 3 variants.
I keep OSE as the default, but proposes to add back the "origin v3.6" variant.
Diffstat (limited to 'utils')
-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): |