Browse Source

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.
Bruno Vernay 7 years ago
parent
commit
2fa5738e80
1 changed files with 1 additions and 1 deletions
  1. 1 1
      utils/src/ooinstall/variants.py

+ 1 - 1
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.
 # Ordered list of variants we can install, first is the default.
 SUPPORTED_VARIANTS = (OSE, REG, origin, LEGACY)
 SUPPORTED_VARIANTS = (OSE, REG, origin, LEGACY)
-DISPLAY_VARIANTS = (OSE, REG,)
+DISPLAY_VARIANTS = (OSE, REG, origin)
 
 
 
 
 def find_variant(name, version=None):
 def find_variant(name, version=None):