summaryrefslogtreecommitdiffstats
path: root/utils
Commit message (Collapse)AuthorAgeFilesLines
* 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.
* Fix invalid sudo command testTakayoshi Kimura2015-11-161-1/+1
|
* Merge pull request #884 from smunilla/english_updatesBrenton Leanhardt2015-11-121-4/+8
|\ | | | | atomic-openshift-installer: Update prompts and help messages
| * atomic-openshift-installer: Update prompts and help messagesSamuel Munilla2015-11-121-4/+8
| |
* | atomic-openshift-installer: Update nopwd sudo testSamuel Munilla2015-11-121-1/+1
| | | | | | | | | | This is an update to the no password sudo test meant to address some weirdness around group vs. user permissions.
* | Test additions for cli_installer:get_hosts_to_install_onBrenton Leanhardt2015-11-121-32/+183
|/
* Refactor upgrade playbook(s)Jason DeTiberus2015-11-103-6/+11
| | | | | | | | | | | | | - 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-102-9/+11
|\ | | | | atomic-openshift-installer: Remove question for container install
| * Update tests now that cli is not asking for rpm/container installSamuel Munilla2015-11-101-2/+2
| |
| * 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 #849 from brenton/test_fixesBrenton Leanhardt2015-11-093-11/+21
|\ | | | | Test fixes related to connect_to
| * Various fixes related to connect_toBrenton Leanhardt2015-11-093-11/+21
| | | | | | | | | | There the tests didn't know anything about connect_to and we had a case where we weren't handling the migration from the 3.0 installer config format to 3.1
* | atomic-openshift-installer: Generate inventory off hosts_to_run_onSamuel Munilla2015-11-091-1/+1
|/ | | | | This generates the ansible inventory based on the pruned list of non-installed hosts we've created rather than the full host list provided in installer.cfg.yaml
* Merge pull request #835 from brenton/masterBrenton Leanhardt2015-11-061-1/+1
|\ | | | | Updating the atomic-openshift-isntaller local connection logic for th…
| * Updating the atomic-openshift-isntaller local connection logic for the ↵Brenton Leanhardt2015-11-061-1/+1
| | | | | | | | connect_to addition.
* | Merge pull request #822 from detiber/upgradeFix2Brenton Leanhardt2015-11-062-27/+41
|\ \ | |/ |/| 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-052-26/+37
| | | | | | | | | | | | | | | | | | | | - 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-064-36/+29
|/ | | | | 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
* Making it easier to use pre-release contentBrenton Leanhardt2015-11-051-10/+11
|
* Bug 1274201 - Fixing non-root installations if using a local connectionBrenton Leanhardt2015-11-051-9/+11
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Previously we were writing out a inventory like this: ~~~ [OSEv3:children] masters nodes [OSEv3:vars] ansible_ssh_user=root deployment_type=openshift-enterprise ansible_connection=local [masters] ose3-master.example.com openshift_hostname=ose3-master.example.com [nodes] ose3-master.example.com openshift_hostname=ose3-master.example.com ose3-node1.example.com openshift_hostname=ose3-node1.example.com ose3-node2.example.com openshift_hostname=ose3-node2.example.com ~~~ The problem with that is now all the hosts are consider local connections. In addition our sudo check wasn't working as expected. We would check that we have sudo, but the playbooks were not running with root privileges. When gathering facts you'd hit: ~~~ __main__.OpenShiftFactsFileWriteError: Could not create fact file: /etc/ansible/facts.d/openshift.fact, error: [Errno 13] Permission denied: '/etc/ansible/facts.d/openshift.fact' ~~~ Instead the test for locale connections needs to be per host. Anytime we're not running as root we need `ansible_become` set: ~~~ ose3-master.example.com openshift_hostname=ose3-master.example.com ansible_connection=local ansible_become=true ~~~
* Bug 1274201 - Fixing sudo non-interactive testBrenton Leanhardt2015-11-051-1/+1
| | | | https://bugzilla.redhat.com/show_bug.cgi?id=1274201#c13
* Fix bug with not upgrading openshift-master to atomic-openshift-master.Devan Goodwin2015-11-041-0/+1
| | | | | | | | Removing the full call to config resulted in rpms not getting upgraded. Config was doing a yum update of everything, which picks up the atomic-openshift-master obsoleting openshift-master. The actual yum call changed here would not. Instead we switch to a direct call to yum which correctly picks up the obsoletes and updates to atomic-openshift packages.
* 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-034-39/+51
|\
| * 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.
| * | Merge pull request #798 from smunilla/inaccurate_promptBrenton Leanhardt2015-11-031-1/+1
| |\ \ | | | | | | | | atomic-openshift-installer: Correct inaccurate prompt
| | * | atomic-openshift-installer: Correct inaccurate promptSamuel Munilla2015-11-031-1/+1
| | |/
| * | ooinstall: Add check for nopwd sudoSamuel Munilla2015-11-031-1/+6
| | |
| * | ooinstall: Update local install checkSamuel Munilla2015-11-031-2/+2
| | | | | | | | | | | | | | | | | | Update to check both hostname and public_hostname. Remove ansible_sudo=no as I failed to notice we were already checking if ansible_ssh_user == 'root' and setting it there.
| * | oo-install: Support running on the host to be deployedSamuel Munilla2015-11-031-0/+7
| |/ | | | | | | | | | | | | | | | | | | This adds a check to see if the host the installer is running on is one of the hosts to be installed and sets i ansible_connection=local ansible_sudo=no in the inventory file.
| * Merge pull request #783 from smunilla/text_improvementsBrenton Leanhardt2015-11-032-2/+2
| |\ | | | | | | atomic-openshift-installer: Text improvements
| | * atomic-openshift-installer: Text improvementsSamuel Munilla2015-11-022-2/+2
| | | | | | | | | | | | | | | Improvements to some of the installer text based on suggestions from the doc team.
| * | Rename install_transactions module to openshift_ansible.Devan Goodwin2015-11-023-27/+27
| | |
* | | Fix installer upgrade bug following pylint fix.Devan Goodwin2015-11-031-1/+1
| | |
* | | Document the new version field for installer config.Devan Goodwin2015-11-031-0/+5
| | |
* | | Remove my username from some test data.Devan Goodwin2015-11-031-3/+3
| | |
* | | Add a simple version for the installer config file.Devan Goodwin2015-11-032-0/+6
| | |
* | | Pylint fix.Devan Goodwin2015-11-031-1/+1
| | |
* | | Better info prior to initiating upgrade.Devan Goodwin2015-11-021-11/+10
| | |
* | | Print info after upgrade completes.Devan Goodwin2015-11-022-1/+8
| | |
* | | Automatically upgrade legacy config files.Devan Goodwin2015-11-022-10/+92
| | |