summaryrefslogtreecommitdiffstats
path: root/utils/src/ooinstall/cli_installer.py
Commit message (Collapse)AuthorAgeFilesLines
* Suggest dedicated nodes for an HA deployment.Devan Goodwin2015-11-301-0/+9
|
* Error out if no load balancer specified.Devan Goodwin2015-11-301-14/+10
|
* Adjust requirement for 3 masters for HA deployments.Devan Goodwin2015-11-301-8/+33
| | | | | | | | | If only 2 masters are specified, consider this a configuration error if running an unattended install, and prevent it completely if running an attended install. (continues to prompt for hosts until you have at least 3) Because this condition cannot be entered in the interactive install, we can't really write a test for this negative case.
* Improved output when re-running after editing config.Devan Goodwin2015-11-271-4/+5
|
* Print a system summary after adding each.Devan Goodwin2015-11-271-8/+20
|
* Text improvements for host specification.Devan Goodwin2015-11-271-7/+19
|
* Test unattended HA quick install.Devan Goodwin2015-11-261-8/+15
| | | | | Checking behavior when there is no LB specified, and when the user attempts to re-use a master or node as their LB.
* Don't prompt to continue during unattended installs.Devan Goodwin2015-11-261-4/+6
|
* Block re-use of master/node as load balancer in attended install.Devan Goodwin2015-11-261-10/+25
| | | | | | | | | | | | Code was present to catch this in unattended installs but was looking for a host record with both master/node and master_lb set to true, but in the attended installs we were adding a separate host record with the same connect_to. Attended tests can now optionally specify multiple "attempted" strings for the master_lb specification, we'll try to input each if multiple are specified. Cleanup some empty defaults and error messages as well.
* Merge pull request #978 from brenton/quick_haBrenton Leanhardt2015-11-241-17/+103
|\ | | | | HA support for atomic-openshift-installer
| * Properly setting scheduleability for HA Master scenariosBrenton Leanhardt2015-11-241-2/+2
| | | | | | | | If the only Nodes we have are also on Masters we set the scheduleable.
| * Avoid printing the master and node totals in the add-a-node scenarioBrenton Leanhardt2015-11-241-7/+8
| |
| * Fixing tests for quick_haBrenton Leanhardt2015-11-241-2/+3
| | | | | | | | | | | | Also: * minor rewording of the text that informs the admin about scheduleable masters.
| * Handling preconfigured load balancersBrenton Leanhardt2015-11-231-10/+24
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | The preconfigured load balancers, previously denoted by having 'run_on' set to false, cannot have their facts gathered which results in a stack trace. Later when we write out the inventory we have to fake out the hostname and just use 'connect_to'. We're likely going to have the concept of other types of "plug-in" hosts where we don't run ansible. We should make sure we abstract this properly so it's easy to add additional types of hosts. Also in the commit: - Renamed 'run_on' to 'preconfigured' and inverted the logic as needed - Output tally of Masters and Nodes as well as remaining Masters required for HA - Minor rewording in a few places - Currently only prompting for the load balancer after all other hosts have been entered - Removed spurious echo
| * atomic-openshift-installer: Rename ha_proxySamuel Munilla2015-11-231-10/+10
| | | | | | | | | | Rename ha_proxy variables and methods to 'master_lb' to better future-proof things.
| * atomic-openshift-installer: Reverse version and host collectionSamuel Munilla2015-11-231-8/+10
| | | | | | | | | | | | Reverse the order we ask two questions: What variant the user wants to install and which hosts to install on. This lets us avoid asking for multiple masters for 3.0 installs.
| * Enforce 1 or 3 mastersSamuel Munilla2015-11-231-2/+8
| |
| * atomic-openshift-installer: HA for quick installerSamuel Munilla2015-11-231-10/+72
| | | | | | | | This adds the ability to quickly set up a multi-master environment.
* | Bug 1284991 - "atomic-openshift-installer uninstall" error when ↵Brenton Leanhardt2015-11-241-1/+1
|/ | | | configuration file is missing.
* Merge pull request #890 from smunilla/friendly_unattended_errorsBrenton Leanhardt2015-11-201-1/+6
|\ | | | | atomic-openshift-installer: connect_to error handling
| * atomic-openshift-installer: connect_to error handlingSamuel Munilla2015-11-201-1/+6
| | | | | | | | Catch the exception that happens when connect_to isn't specified in installer.cfg.yaml
* | atomic-openshift-installer: pylint fixesSamuel Munilla2015-11-201-5/+7
|/ | | | A few fixes to keep pylint happy.
* Merge pull request #902 from dgoodwin/rpm-test-fixBrenton Leanhardt2015-11-201-2/+5
|\ | | | | Default to OSE 3.1 in interactive installer instead of 3.0.
| * Pylint fix for long line in cli docstring.Devan Goodwin2015-11-161-1/+2
| |
| * Default to installing OSE 3.1 instead of 3.0.Devan Goodwin2015-11-161-0/+1
| |
| * Fix tests on systems with openshift-ansible rpms installed.Devan Goodwin2015-11-161-1/+2
| |
* | atomic-openshift-installer: Correct single master caseSamuel Munilla2015-11-171-1/+1
| | | | | | | | Correct the case where the first host entered is not a master.
* | atomic-openshift-installer: Temporarily restrict to single masterSamuel Munilla2015-11-161-4/+6
|/ | | | | For now, we should restrict the quick installer to a single master. This should change in the near future.
* atomic-openshift-installer: Update prompts and help messagesSamuel Munilla2015-11-121-4/+8
|
* Refactor upgrade playbook(s)Jason DeTiberus2015-11-101-2/+3
| | | | | | | | | | | | | - Split playbooks into two, one for 3.0 minor upgrades and one for 3.0 to 3.1 upgrades - Move upgrade playbooks to common/openshift/cluster/upgrades from adhoc - Added a byo wrapper playbooks to set the groups based on the byo conventions, other providers will need similar playbooks added eventually - installer wrapper updates for refactored upgrade playbooks - call new 3.0 to 3.1 upgrade playbook - various fixes for edge cases I hit with a really old config laying around. - fix output of host facts to show connect_to value.
* Merge pull request #860 from smunilla/disable_container_based_installBrenton Leanhardt2015-11-101-7/+9
|\ | | | | atomic-openshift-installer: Remove question for container install
| * atomic-openshift-installer: Remove question for container installSamuel Munilla2015-11-101-7/+9
| | | | | | | | | | Removing the option for a container-based install from the quick installer with it is in tech preview.
* | Package the default ansible.cfg with atomic-openshift-utils.Devan Goodwin2015-11-101-1/+1
|/ | | | | | | If this file exists on disk, the installer will use it if the user didn't specify an ansible config file on the CLI. Rename share directory to match the rpm name. (utils vs util)
* Merge pull request #822 from detiber/upgradeFix2Brenton Leanhardt2015-11-061-8/+19
|\ | | | | Upgrade enhancements
| * Write new config to disk after successful upgrade.Devan Goodwin2015-11-061-0/+1
| |
| * Fix pylint errors with getting hosts to run on.Devan Goodwin2015-11-061-1/+3
| |
| * Upgrade improvementsDevan Goodwin2015-11-051-7/+15
| | | | | | | | | | | | | | | | | | | | - Push config dir logic out of module and use host variables instead. - Backup master config with ansible utility. - Add error handling for the upgrade config module. - Add verbose option to installer. - Return details on what we changed when upgrading config. - Cleanup use of first master. - Don't install upgrade rpms to check what version we'll upgrade to.
* | atomic-openshift-installer: Better specification of ansible connection pointSamuel Munilla2015-11-061-22/+16
|/ | | | | Changes to installer.cfg.yaml to allow for better defaults in unattended mode. Update example in the docs.
* Bug 1278243 - Confusing prompt from atomic-openshift-installerBrenton Leanhardt2015-11-051-1/+2
|
* Bug 1278244 - Previously there was no way to add a node in unattended modeBrenton Leanhardt2015-11-051-25/+44
| | | | | | | | | | | TODO: We desparately need tests cases for: - interactive with no config file - interactive with config file and all installed hosts - interactive with config file and no installed hosts - interactive with config file and some installed some uninstalled hosts - unattended with config file and all installed hosts (with and without --force) - unattended with config file and no installed hosts (with and without --force) - unattended with config file and some installed some uninstalled hosts (with and without --force)
* Bug 1278244 - Incorrect node information gathered by atomic-openshift-installerBrenton Leanhardt2015-11-051-0/+2
| | | | | Previously the output was a little confusing. We didn't display anything about the uninstalled hosts.
* atomic-openshift-installer's unattended mode wasn't work with --force for ↵Brenton Leanhardt2015-11-051-1/+4
| | | | all cases
* Fix bug from module rename.Devan Goodwin2015-11-041-1/+1
|
* Fix bug with default ansible playbook dir.Devan Goodwin2015-11-041-1/+1
|
* Merge remote-tracking branch 'upstream/master' into upgradeDevan Goodwin2015-11-031-17/+17
|\
| * Merge pull request #801 from smunilla/default_playbook_argBrenton Leanhardt2015-11-031-8/+8
| |\ | | | | | | atomic-openshift-installer: Add default openshift-ansible-playbook
| | * atomic-openshift-installer: Add default openshift-ansible-playbookSamuel Munilla2015-11-031-8/+8
| | | | | | | | | | | | | | | This adds a default value to the openshift-ansible-playbook directory and also removes the requirement that it be writable.
| * | atomic-openshift-installer: Correct inaccurate promptSamuel Munilla2015-11-031-1/+1
| |/
| * Merge pull request #783 from smunilla/text_improvementsBrenton Leanhardt2015-11-031-1/+1
| |\ | | | | | | atomic-openshift-installer: Text improvements
| | * atomic-openshift-installer: Text improvementsSamuel Munilla2015-11-021-1/+1
| | | | | | | | | | | | | | | Improvements to some of the installer text based on suggestions from the doc team.