summaryrefslogtreecommitdiff
path: root/utils
AgeCommit message (Collapse)Author
2016-05-10a-o-i: Write proxy variablesSamuel Munilla
Write the proper variables for http(s) and proxy excludes to the ansible inventory.
2016-04-28a-o-i: More friendly proxy questionsSamuel Munilla
Some UI improvements to help make it more clear to the user what information we are looking for.
2016-04-27a-o-i-: Allow empty proxySamuel Munilla
2016-04-26a-o-i tests: Update attended tests for proxySamuel Munilla
Update the input to account for the new questions around proxies.
2016-04-26Merge pull request #1765 from smunilla/proxy_uiJason DeTiberus
a-o-i: UI additions for proxies
2016-04-25Replace deprecated sudo with become.Andrew Butcher
2016-04-21a-o-i: Correct bug with default storage hostSamuel Munilla
Fix issue with assigning the Host object to a variable that expects a string.
2016-04-19a-o-i: Update prompt when asking for proxySamuel Munilla
2016-04-18a-o-i: UI additions for proxiesSamuel Munilla
2016-04-18a-o-i: Don't assume storage on 1st masterSamuel Munilla
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
2016-04-08a-o-i: Support openshift_image_tagSamuel Munilla
Somewhat hacky solution to let users install containerized 3.1. A more flexible version will be forthcoming once we settle tagging issues.
2016-04-05Merge pull request #1654 from dgoodwin/gen-inventoryBrenton Leanhardt
Add --gen-inventory command to atomic-openshift-installer.
2016-04-01Merge pull request #1544 from smunilla/BZ1299032Brenton Leanhardt
a-o-i: Error out early if callback_facts is None
2016-03-24Write inventory to same directory as quick install config.Devan Goodwin
With the addition of a --gen-inventory flag and always displaying the location of the inventory written to disk, we should write the hosts file to a more prominent location rather than a hidden directory.
2016-03-24Add --gen-inventory command to atomic-openshift-installer.Devan Goodwin
This will just generate the Ansible inventory once all information is gathered, inform the user where to find it, and exit. Includes some test utility updates to make what broke as a result of this change less fragile.
2016-03-23a-o-i: Add 3.2 to list of supported versionsSamuel Munilla
2016-03-23a-o-i: Support for unattended upgradesSamuel Munilla
Adds the ability to perform upgrades without any user input through: atomic-openshift-installer --unattended upgrade --next-major or atomic-openshift-installer --unattended upgrade --latest-minor
2016-03-23a-o-i: More flexible upgrade mappingsSamuel Munilla
Change the upgrade logic to allow for more than two types of upgrades.
2016-03-14Updating the docker registry variables to use the new nameBrenton Leanhardt
2016-03-09a-o-i: Fix NFS storage testsSamuel Munilla
Fix the nosetests after the rebase
2016-03-09First attempt at NFS setupSamuel Munilla
2016-03-04a-o-i: Error out early if callback_facts is NoneSamuel Munilla
Bail out much earlier if for some reason callback_facts does not return any data. This should prevent later methods from generating stack traces.
2016-02-26a-o-i: Rename osm_default_subdomainSamuel Munilla
Rename osm_default_subdomain to openshift_master_default_subdomain to match PR1495.
2016-02-24Merge pull request #1487 from brenton/masterBrenton Leanhardt
a-o-i: Better method for identifying master_lb
2016-02-24a-o-i: Double safety check on master_lbSamuel Munilla
2016-02-24a-o-i: Better method for identifying master_lbSamuel Munilla
The previous check was less than reliable thanks to potential differences between hostname / ip / connect_to. This check should cover all instances.
2016-02-23Merge pull request #1480 from brenton/masterBrenton Leanhardt
a-o-i: Exception checking around master_lb
2016-02-23a-o-i: Exception checking around master_lbSamuel Munilla
Some additional error checking when selecting the master_lb
2016-02-22Merge pull request #1337 from abutcher/master-scaleupBrenton Leanhardt
Support for adding new masters
2016-02-19a-o-i: Redo logic for detecting master_lbSamuel Munilla
After much research and debugging, it turns out the facts for nativeha hosts were much less consistent than I hoped. With this newfound knowledge, I've implemented this method. In short, you check with the first master to see what it thinks the master_lb is, then you include that host as "installed".
2016-02-19Merge pull request #1411 from smunilla/pylint_16_feb_2016Brenton Leanhardt
a-o-i: pylint fixes related to too-long lines
2016-02-17Merge pull request #1425 from smunilla/BZ1308440Brenton Leanhardt
a-o-i: Change method for counting master_lb as installed
2016-02-17a-o-i: Change method for counting master_lb as installedSamuel Munilla
2016-02-16Re-arrange scaleup playbooks.Andrew Butcher
2016-02-16a-o-i: pylint fixes related to too-long linesSamuel Munilla
2016-02-15Merge pull request #1399 from smunilla/BZ1308440Brenton Leanhardt
a-o-i: Count nativeha hosts as "installed" for scaleup
2016-02-15a-o-i: Count nativeha hosts as "installed" for scaleupSamuel Munilla
2016-02-15a-o-i: Add master_routingconfig_subdomain to PERSIST_SETTINGSSamuel Munilla
Fix for BZ1308313
2016-02-12a-o-i: Prompts to allow minor upgradesSamuel Munilla
Updates to the upgrade command to allow the user to select a minor upgrade.
2016-02-04aoi: Safer check for master_routingconfig_subdomainSamuel Munilla
2016-02-02aoi: Ask for osm_default_subdomain in interactive modeSamuel Munilla
Add a question to ask the user for a default subdomain.
2016-01-18Merge pull request #1199 from smunilla/no_containerized_for_3.0Brenton Leanhardt
atomic-openshift-installer: Remove containerized install for 3.0
2016-01-18atomic-openshift-installer: add containerized to inventorySamuel Munilla
Updates to actually check the containerized setting and add it to the inventory.
2016-01-18atomic-openshift-installer: Remove containerized install for 3.0Samuel Munilla
This removes the option to specify a containerized install when installing 3.0 in interactive mode.
2016-01-13atomic-openshift-installer: Error handling for unicode hostnamesSamuel Munilla
Fix error handling for invalid hostnames. Previously we were trying to print the offending hostname out, which caused errors due to python's handling of unicode strings. Seeing as how the user's input stays on the screen directly above the error there is no need to try and print it and we can avoid this problem entirely.
2016-01-12Merge pull request #1169 from abutcher/fix-rpm-container-testsBrenton Leanhardt
Add is_containerized inputs to nosetests.
2016-01-12Merge pull request #1143 from smunilla/new_nodesBrenton Leanhardt
atomic-openshift-installer: Populate new_nodes group
2016-01-12Add is_containerized inputs to nosetests.Andrew Butcher
2016-01-11re-enable containerize installsScott Dodson
2016-01-08atomic-openshift-installer: Populate new_nodes groupSamuel Munilla
Set the new_nodes group when scaling up additional nodes