diff options
author | Samuel Munilla <smunilla@redhat.com> | 2015-11-10 13:35:13 -0500 |
---|---|---|
committer | Samuel Munilla <smunilla@redhat.com> | 2015-11-10 13:35:13 -0500 |
commit | 1e28190e374aac4677394bc9b8f3e8428b15dc5a (patch) | |
tree | 8d08545452896cfb670fa32fd5c193cde411e77b /utils/src | |
parent | 35c3b7d15cfac7da748382dc4ad429ca78e7c74e (diff) | |
download | openshift-1e28190e374aac4677394bc9b8f3e8428b15dc5a.tar.gz openshift-1e28190e374aac4677394bc9b8f3e8428b15dc5a.tar.bz2 openshift-1e28190e374aac4677394bc9b8f3e8428b15dc5a.tar.xz openshift-1e28190e374aac4677394bc9b8f3e8428b15dc5a.zip |
atomic-openshift-installer: Remove question for container install
Removing the option for a container-based install from the quick
installer with it is in tech preview.
Diffstat (limited to 'utils/src')
-rw-r--r-- | utils/src/ooinstall/cli_installer.py | 16 |
1 files changed, 9 insertions, 7 deletions
diff --git a/utils/src/ooinstall/cli_installer.py b/utils/src/ooinstall/cli_installer.py index a40ff5cfc..3322a1e62 100644 --- a/utils/src/ooinstall/cli_installer.py +++ b/utils/src/ooinstall/cli_installer.py @@ -112,13 +112,15 @@ http://docs.openshift.com/enterprise/latest/architecture/infrastructure_componen host_props['master'] = click.confirm('Will this host be an OpenShift Master?') host_props['node'] = True - rpm_or_container = click.prompt('Will this host be RPM or Container based (rpm/container)?', - type=click.Choice(['rpm', 'container']), - default='rpm') - if rpm_or_container == 'container': - host_props['containerized'] = True - else: - host_props['containerized'] = False + #TODO: Reenable this option once container installs are out of tech preview + #rpm_or_container = click.prompt('Will this host be RPM or Container based (rpm/container)?', + # type=click.Choice(['rpm', 'container']), + # default='rpm') + #if rpm_or_container == 'container': + # host_props['containerized'] = True + #else: + # host_props['containerized'] = False + host_props['containerized'] = False host = Host(**host_props) |