summaryrefslogtreecommitdiffstats
path: root/roles/openshift_master/tasks/upgrade
Commit message (Collapse)AuthorAgeFilesLines
* Add call to 3.8 playbook in 3.9 upgradeScott Dodson2018-01-171-1/+0
|
* Exclude 3.9 packages during 3.8 upgradeScott Dodson2018-01-171-2/+21
| | | | | | | | There are some obsoletes in 3.9 packages which lead yum to upgrade directly from 3.7 to 3.9 when you ask for 3.8 packages while 3.9 repos are enabled. Since we'd like to allow people to run one playbook to upgrade from 3.7 to 3.8 to 3.9 we need to exclude those packages when upgrading to 3.8
* Remove tuned-profiles from list of master packages upgradedScott Dodson2018-01-161-1/+0
|
* Merge pull request #6614 from mgugino-upstream-stage/plugins-to-lib-utilsScott Dodson2018-01-111-0/+2
|\ | | | | Move more plugins to lib_utils
| * Move more plugins to lib_utilsMichael Gugino2018-01-101-0/+2
| | | | | | | | | | | | | | This commit continues moving plugins into lib_utils. This commit does not move any plugins for add-on roles such as logging and metrics.
* | Add defaults for openshift_pkg_versionMichael Gugino2018-01-101-6/+6
|/ | | | | | | | | | | | This variable may or may not be defined by the users. During deployments, it will be set to '-{{ openshift_version }}' if undefined. During upgrades, it will remain undefined. This commit ensures that if the variable is undefined, empty strings '' are set.
* Deprecate using Ansible tests as filtersRussell Teague2017-12-141-1/+1
|
* Remove openshift.common.service_typeMichael Gugino2017-12-071-6/+6
| | | | | | | | This commit removes openshift.common.service_type in favor of openshift_service_type. This commit also removes r_openshift_excluder_service_type from plays in favor of using the role's defaults.
* retry package operationsLuke Meyer2017-11-301-0/+2
| | | | | | When a package install/update fails due to network blips or other spotty availability, retry it. If the failure is a real failure (e.g. package is really not there) it still fails after 3 tries (Ansible default).
* Combine master upgrade play with roleMichael Gugino2017-11-094-0/+228
Currently, there are plays importing tasks directly from openshift_master role. This has caused numerous bugs and code duplicaiton in the past. This commit combines the upgrade into openshift_master role utilizing include_role syntax.