summaryrefslogtreecommitdiffstats
path: root/utils/src
diff options
context:
space:
mode:
authorSamuel Munilla <smunilla@redhat.com>2016-04-18 13:12:21 -0400
committerSamuel Munilla <smunilla@redhat.com>2016-04-18 14:22:36 -0400
commit1d08d9a06689b2a49a9028040e3317abc775fe2f (patch)
treeef8a0fce35831c4b611eb36e68711e9d0d0289d5 /utils/src
parent9c2fffb769ba17664d5c5fe219c3f899a14aae61 (diff)
downloadopenshift-1d08d9a06689b2a49a9028040e3317abc775fe2f.tar.gz
openshift-1d08d9a06689b2a49a9028040e3317abc775fe2f.tar.bz2
openshift-1d08d9a06689b2a49a9028040e3317abc775fe2f.tar.xz
openshift-1d08d9a06689b2a49a9028040e3317abc775fe2f.zip
a-o-i: Don't assume storage on 1st master
Always prompt the user for a storage host. The prompt defaults to the first master and warns the user not to use a container-based installation for this. WIP
Diffstat (limited to 'utils/src')
-rw-r--r--utils/src/ooinstall/cli_installer.py14
1 files changed, 9 insertions, 5 deletions
diff --git a/utils/src/ooinstall/cli_installer.py b/utils/src/ooinstall/cli_installer.py
index dd9d517f1..aaf3b7972 100644
--- a/utils/src/ooinstall/cli_installer.py
+++ b/utils/src/ooinstall/cli_installer.py
@@ -163,11 +163,10 @@ http://docs.openshift.com/enterprise/latest/architecture/infrastructure_componen
if masters_set or num_masters != 2:
more_hosts = click.confirm('Do you want to add additional hosts?')
- if num_masters == 1:
- master = next((host for host in hosts if host.master), None)
- master.storage = True
- elif num_masters >= 3:
+ if num_masters >= 3:
collect_master_lb(hosts)
+
+ if not existing_env:
collect_storage_host(hosts)
return hosts
@@ -306,12 +305,17 @@ def collect_storage_host(hosts):
message = """
Setting up High Availability Masters requires a storage host. Please provide a
host that will be configured as a Registry Storage.
+
+Note: Containerized storage hosts are not currently supported.
"""
click.echo(message)
host_props = {}
+ first_master = next(host for host in hosts if host.master)
+
hostname_or_ip = click.prompt('Enter hostname or IP address',
- value_proc=validate_prompt_hostname)
+ value_proc=validate_prompt_hostname,
+ default=first_master)
existing, existing_host = is_host_already_node_or_master(hostname_or_ip, hosts)
if existing and existing_host.node:
existing_host.storage = True