diff options
author | Samuel Munilla <smunilla@redhat.com> | 2016-04-19 11:21:08 -0400 |
---|---|---|
committer | Samuel Munilla <smunilla@redhat.com> | 2016-04-19 11:23:21 -0400 |
commit | 5647c1364b481107c00aef2c4e038b7eb2efb0db (patch) | |
tree | 02865fc80e33167236df1d5b1368059eae13e662 /utils | |
parent | 84448f03601d22c85e8598ba847ed2ded68bd0e6 (diff) | |
download | openshift-5647c1364b481107c00aef2c4e038b7eb2efb0db.tar.gz openshift-5647c1364b481107c00aef2c4e038b7eb2efb0db.tar.bz2 openshift-5647c1364b481107c00aef2c4e038b7eb2efb0db.tar.xz openshift-5647c1364b481107c00aef2c4e038b7eb2efb0db.zip |
a-o-i: Update prompt when asking for proxy
Diffstat (limited to 'utils')
-rw-r--r-- | utils/src/ooinstall/cli_installer.py | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/utils/src/ooinstall/cli_installer.py b/utils/src/ooinstall/cli_installer.py index 532194f7a..3c5869a60 100644 --- a/utils/src/ooinstall/cli_installer.py +++ b/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) |