| Commit message (Collapse) | Author | Age | Files | Lines |
|
|
|
|
|
|
|
|
|
|
| |
- do not upgrade predicates if openshift_master_scheduler_predicates is
defined
- do not upgrade priorities if openshift_master_scheduler_priorities is
defined
- do not upgrade predicates/priorities unless they match known previous
default configs
- output WARNING to user if predictes/priorities are not updated during
install
|
|
|
|
|
|
| |
- fix nose coverage flags
- add coverage support for files tested outside of the utils directory
- exclude stdlib and virtualenv installed dependencies
|
| |
|
|\
| |
| | |
Enable quiet output for all a-o-i commands
|
| |
| |
| |
| |
| |
| |
| | |
* Update: uninstall, upgrade, scaleup wf's
* Verbosity can be toggled with -v flag, as before
https://bugzilla.redhat.com/show_bug.cgi?id=1384294
|
|/
|
|
|
|
| |
Update the default for the override prompt and set both
openshift_master_cluster_hostname and
openshift_master_cluster_public_hostname
|
|\
| |
| | |
Bug 1390064 - [quick install] a complete installed cluster was reported as a mix of installed and uninstalled env
|
| | |
|
|\ \
| | |
| | | |
Remove some dead code
|
| | | |
|
| |/ |
|
|/ |
|
|
|
|
|
|
| |
Just a quick addition for the upgrade playbooks for 3.4
Fixes Bug 1384291
|
|\
| |
| | |
Update master_lb vs cluster_hostname workflow
|
| |
| |
| |
| |
| |
| | |
Previously, the messaging around setting cluster_hostname
for single master setups was confusing. This should help with
that as well as removing unecessary values from the cfg file.
|
| |
| |
| |
| |
| |
| | |
* Load balancers are now excluded from the mixed environment check
* https://bugzilla.redhat.com/show_bug.cgi?id=1390064
|
| |
| |
| |
| |
| |
| |
| |
| | |
We have changed how we assign etcd members in the quick
installer. This updates our messaging to match those changes.
Fixes Bug 1383961
Fixes Bug 1389649
|
|/
|
|
|
|
| |
Update the quick installer to correctly set the new version.
Fixes Bug 1388762
|
|\
| |
| | |
Unit tests for the debug_env logger thing
|
| | |
|
|\ \
| |/
|/| |
a-o-i: Separate install and scaleup workflows
|
| |
| |
| |
| |
| |
| |
| | |
In order to simplify the quick installer logic, this moves
the scaleup workflow into its own subcommand.
Fixes: Bug 1339621
|
|\ \
| | |
| | | |
Fix typos
|
| |/ |
|
| |
| |
| |
| |
| |
| | |
Fix 'make ci' system
Add examples
|
|/ |
|
|
|
|
|
|
|
| |
Update to use the correct playbook for 3.2 to 3.3 upgrades
and some error handling for unsupported upgrades.
Fixes Bug 1381411
|
| |
|
|
|
|
|
|
|
| |
If uninstalled hosts were in detected in an environment,
the installer could get into a hung state that a user
could not easily recover from. This lets --force do what is
more expected.
|
|
|
|
|
| |
Handle openshift_node_labels separately because they
need to be doublequoted.
|
|
|
|
|
| |
Allow the user to set arbitrary variables directly under the host item instead of
in under an 'other_variables' item.
|
|
|
|
| |
Also, remove the final 'press a key to continue' prompt.
|
| |
|
| |
|
| |
|
| |
|
| |
|
|\
| |
| | |
a-o-i: Do not display version number in quick installer
|
| |
| |
| |
| |
| |
| | |
As we now require the version of the installer to match what will be installed in
the target environment and to avoid any potential confusion, remove the version
number from the variant choice question.
|
|/
|
|
|
|
| |
Make sure we don't set an unschedulable node as infra as that can cause problems.
Fixes: Bug 1375946
|
| |
|
|\
| |
| | |
Don't attempt to create retry files
|
| |
| |
| |
| | |
Closes #2283
|
|\ \
| | |
| | | |
Fix PyLint errors discovered when upgrading to newer version
|
| | | |
|
| | | |
|
| | |
| | |
| | |
| | | |
to the latest version available on RHEL7
|
| | | |
|
| | | |
|
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | | |
* Fixes PyLint to run in the virtualenv used for all tests
* Replaced 'LooseVersion' with 'parse_version' from setuptools
- This is a work around for the issue in
https://github.com/PyCQA/pylint/issues/73 in which pylint can not
import disutils.version correctly in a virtualenv.
* Removed the unused function 'delete_hosts' which was causing a
pylint error as well
* Removed a deprecated pylint pragma option, 'bad-builtin'
* Fixed some import ordering issues it was picky about
* Added another disable for a case where the PyLint suggestion would
have us altering the container we would be iterating over
* Add code-coverage reports to the unittests with the MINIMUM coverage
percentage for success set to 70%
- Current test coverage is at 76%
|