summaryrefslogtreecommitdiff
path: root/utils
AgeCommit message (Collapse)Author
2015-11-06Write new config to disk after successful upgrade.Devan Goodwin
2015-11-06Fix pylint errors with getting hosts to run on.Devan Goodwin
2015-11-05Upgrade improvementsDevan Goodwin
- 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.
2015-11-05Bug 1278243 - Confusing prompt from atomic-openshift-installerBrenton Leanhardt
2015-11-05Bug 1278244 - Previously there was no way to add a node in unattended modeBrenton Leanhardt
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)
2015-11-05Bug 1278244 - Incorrect node information gathered by atomic-openshift-installerBrenton Leanhardt
Previously the output was a little confusing. We didn't display anything about the uninstalled hosts.
2015-11-05atomic-openshift-installer's unattended mode wasn't work with --force for ↵Brenton Leanhardt
all cases
2015-11-05Making it easier to use pre-release contentBrenton Leanhardt
2015-11-05Bug 1274201 - Fixing non-root installations if using a local connectionBrenton Leanhardt
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 ~~~
2015-11-05Bug 1274201 - Fixing sudo non-interactive testBrenton Leanhardt
https://bugzilla.redhat.com/show_bug.cgi?id=1274201#c13
2015-11-04Fix bug with not upgrading openshift-master to atomic-openshift-master.Devan Goodwin
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.
2015-11-04Fix bug from module rename.Devan Goodwin
2015-11-04Fix bug with default ansible playbook dir.Devan Goodwin
2015-11-03Merge remote-tracking branch 'upstream/master' into upgradeDevan Goodwin
2015-11-03Merge pull request #801 from smunilla/default_playbook_argBrenton Leanhardt
atomic-openshift-installer: Add default openshift-ansible-playbook
2015-11-03Merge pull request #798 from smunilla/inaccurate_promptBrenton Leanhardt
atomic-openshift-installer: Correct inaccurate prompt
2015-11-03atomic-openshift-installer: Correct inaccurate promptSamuel Munilla
2015-11-03atomic-openshift-installer: Add default openshift-ansible-playbookSamuel Munilla
This adds a default value to the openshift-ansible-playbook directory and also removes the requirement that it be writable.
2015-11-03ooinstall: Add check for nopwd sudoSamuel Munilla
2015-11-03ooinstall: Update local install checkSamuel Munilla
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.
2015-11-03oo-install: Support running on the host to be deployedSamuel Munilla
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.
2015-11-03Merge pull request #783 from smunilla/text_improvementsBrenton Leanhardt
atomic-openshift-installer: Text improvements
2015-11-03Fix installer upgrade bug following pylint fix.Devan Goodwin
2015-11-03Document the new version field for installer config.Devan Goodwin
2015-11-03Remove my username from some test data.Devan Goodwin
2015-11-03Add a simple version for the installer config file.Devan Goodwin
2015-11-03Pylint fix.Devan Goodwin
2015-11-02Better info prior to initiating upgrade.Devan Goodwin
2015-11-02Rename install_transactions module to openshift_ansible.Devan Goodwin
2015-11-02atomic-openshift-installer: Text improvementsSamuel Munilla
Improvements to some of the installer text based on suggestions from the doc team.
2015-11-02Print info after upgrade completes.Devan Goodwin
2015-11-02Automatically upgrade legacy config files.Devan Goodwin
2015-10-29First cut at checking available disk space for etcd backup.Devan Goodwin
2015-10-28Block upgrade if targetting enterprise deployment type.Devan Goodwin
enterprise is being phased out in favor of openshift-enterprise, you need to specify where you wish to go.
2015-10-27Use default playbooks if available.Devan Goodwin
Because we're now installing from an rpm, we have a good idea where to find the default playbooks and shouldn't require the user to tell us.
2015-10-27Add uninstall subcommand.Devan Goodwin
2015-10-27Add subcommands to CLI.Devan Goodwin
2015-10-27Pylint fixes and ignores for incoming oo-install code.Devan Goodwin
2015-10-26Add atomic-openshift-utilsTroy Dawson
add atomic-openshift-utils to openshift-ansible.spec file no need for redundent spec file remove dependencies that are not needed