Browse Source

a-o-i: Update prompt when asking for proxy

Samuel Munilla 9 years ago
parent
commit
5647c1364b
1 changed files with 11 additions and 0 deletions
  1. 11 0
      utils/src/ooinstall/cli_installer.py

+ 11 - 0
utils/src/ooinstall/cli_installer.py

@@ -517,6 +517,17 @@ def error_if_missing_info(oo_cfg):
         sys.exit(1)
 
 def get_proxy_hostname_and_excludes():
+    message = """
+If a proxy is needed to reach HTTP and HTTPS traffic please enter the name below.
+This proxy will be configured by default for all processes needing to reach systems outside
+the cluster.
+
+More advanced configuration is possible if using ansible directly:
+
+https://docs.openshift.com/enterprise/latest/install_config/http_proxies.html
+"""
+    click.echo(message)
+
     message = "Specify the hostname for your proxy? (ENTER for none)"
     proxy_hostname = click.prompt(message)