Procházet zdrojové kódy

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 před 7 roky
rodič
revize
2fa5738e80
1 změnil soubory, kde provedl 1 přidání a 1 odebrání
  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.
 SUPPORTED_VARIANTS = (OSE, REG, origin, LEGACY)
-DISPLAY_VARIANTS = (OSE, REG,)
+DISPLAY_VARIANTS = (OSE, REG, origin)
 
 
 def find_variant(name, version=None):