|
@@ -520,6 +520,24 @@ def error_if_missing_info(oo_cfg):
|
|
|
if missing_info:
|
|
|
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)
|
|
|
+
|
|
|
+ message = "List any hosts that should be excluded from your proxy. (ENTER for none)"
|
|
|
+ proxy_excludes = click.prompt(message)
|
|
|
+ return proxy_hostname, proxy_excludes
|
|
|
|
|
|
def get_missing_info_from_user(oo_cfg):
|
|
|
""" Prompts the user for any information missing from the given configuration. """
|
|
@@ -566,6 +584,13 @@ https://docs.openshift.com/enterprise/latest/admin_guide/install/prerequisites.h
|
|
|
oo_cfg.settings['master_routingconfig_subdomain'] = get_master_routingconfig_subdomain()
|
|
|
click.clear()
|
|
|
|
|
|
+ if not oo_cfg.settings.get('openshift_http_proxy', None):
|
|
|
+ proxy_hostname, proxy_excludes = get_proxy_hostname_and_excludes()
|
|
|
+ oo_cfg.settings['openshift_http_proxy'] = proxy_hostname
|
|
|
+ oo_cfg.settings['openshift_https_proxy'] = proxy_hostname
|
|
|
+ oo_cfg.settings['openshift_no_proxy'] = proxy_excludes
|
|
|
+ click.clear()
|
|
|
+
|
|
|
return oo_cfg
|
|
|
|
|
|
|