summaryrefslogtreecommitdiffstats
path: root/roles/openshift_node/tasks/upgrade.yml
Commit message (Collapse)AuthorAgeFilesLines
* Fix docker rpm upgrade install task wordingMichael Gugino2018-02-061-1/+1
| | | | This commit corrects wording of task name.
* Remove references to deployment_typeMichael Gugino2017-12-211-1/+0
| | | | | | | Move openshift_deployment_type check into sanity_check action plugin. Remove compatibility for deployment_type. deployment_type has been deprecated for some time now.
* Remove openshift.common.{is_atomic|is_containerized}Michael Gugino2017-12-201-3/+3
| | | | | We set these variables using facts in init, no need to duplicate the logic all around the codebase.
* Deprecate using Ansible tests as filtersRussell Teague2017-12-141-1/+1
|
* upgrade node mark 2Michael Gugino2017-12-121-55/+15
|
* Refactor node upgrade to include less serial tasksMichael Gugino2017-12-121-108/+19
| | | | | | | | | | | | | This commit moves the pulling of images, packages, and updating config files into a non-serialized play. The serialized play is now in charge of marking unschedulable, draining, stopping and restarting services, and marking schedulable. If rpm install / container download takes 60s per host, this will save 3 hours and 10 minutes at 200 hosts per cluster and forks of 20 hosts.
* Remove openshift.common.service_typeMichael Gugino2017-12-071-7/+7
| | | | | | | | 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 openshift_node and openshift_node_dnsmasqMichael Gugino2017-11-271-2/+1
| | | | | This commit combines these two roles. This will prevent openshift_node_facts from running twice.
* Include Deprecation - openshift-nodeRussell Teague2017-11-221-6/+6
|
* Combine openshift_node and openshift_node_upgradeMichael Gugino2017-11-161-0/+183
Currently, having openshift_node and openshift_node_upgrade as two distinct roles has created a duplication across handlers, templates, and some tasks. This commit combines the roles to reduce duplication and bugs encountered by not putting code in both places.