summaryrefslogtreecommitdiffstats
path: root/playbooks/common/openshift-cluster/upgrades
Commit message (Collapse)AuthorAgeFilesLines
...
| * Allow overriding the Docker 1.10 requirement for upgrade.Devan Goodwin2016-08-151-1/+1
| | | | | | | | Respect an explicit docker_version, and the use of docker_upgrade=False.
* | [upgrade] Create/configure service signer cert when missing.Andrew Butcher2016-09-143-1/+102
| |
* | Flush handlers before marking a node schedulable after upgrade.Devan Goodwin2016-09-091-0/+2
| | | | | | | | | | | | Handlers normally only trigger at the end of the play, but in this case we just set our node schedulable again resulting in it immediately getting taken down again.
* | Record schedulability of node prior to upgrade and re-set it to thatScott Dodson2016-09-021-1/+13
| | | | | | | | | | | | | | Previously we were setting schedulability to the state defined in the inventory without regard to whether or not it was manually made schedulable or unschedulable. The right thing seems to be to record the state prior to upgrade and set it back.
* | Fix ops/qps typoJordan Liggitt2016-09-022-3/+3
| |
* | Reload docker facts after upgrading dockerScott Dodson2016-08-301-0/+4
| |
* | Fix upgrade failure when master-config does not have pluginOrderOverride.Devan Goodwin2016-08-241-0/+1
| |
* | Merge pull request #2339 from dgoodwin/plugin-order-warningScott Dodson2016-08-231-0/+13
|\ \ | | | | | | Add warning at end of 3.3 upgrade if pluginOrderOverride is found.
| * | Add warning at end of 3.3 upgrade if pluginOrderOverride is found.Devan Goodwin2016-08-221-0/+13
| |/
* | Don't run node config upgrade hook if host is not a node.Devan Goodwin2016-08-231-1/+1
| |
* | Reconcile roles after master upgrade, but before nodes.Devan Goodwin2016-08-161-43/+46
|/ | | | | | | | | | Prevents the network egress bug causing node restart to fail during 3.3 upgrade. (even though a separate fix is incoming for this) Only catch is preventing the openshift_cli role, which requires docker, from triggering a potential upgrade, which we still don't want at this point. To avoid we use the same variable to protect docker installed version as we use in pre.yml.
* Improvements for Docker 1.10+ upgrade image nuking.Devan Goodwin2016-08-114-20/+55
| | | | | | | | | | | | | | | | In a parallel step prior to real upgrade tasks, clear out all unused Docker images on all hosts. This should be relatively safe to interrupt as no real upgrade steps have taken place. Once into actual upgrade, we again clear all images only this time with force, and after stopping and removing all containers. Both rmi commands use a new and hopefully less error prone command to do the removal, this should avoid missed orphans as we were hitting before. Added some logging around the current image count before and after this step, most of them are only printed if we're crossing the 1.10 boundary but one does not, just for additional information in your ansible log.
* Shutdown Docker before upgrading the rpm.Devan Goodwin2016-08-101-0/+4
| | | | | This avoids the automatic image migration in 1.10, which can take a very long time and potentially cause rpm db corruption.
* Merge pull request #2211 from dgoodwin/33-upgrade-playbookScott Dodson2016-08-0827-64/+124
|\ | | | | 1.3 / 3.3 Upgrades
| * Migrate ca.crt to ca-bundle.crtScott Dodson2016-08-081-0/+25
| |
| * Upgrade configs for protobuf support.Devan Goodwin2016-08-083-0/+66
| |
| * Introduce 1.3/3.3 upgrade path.Devan Goodwin2016-07-2525-64/+33
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Refactored the 3.2 upgrade common files out to a path that does not indicate they are strictly for 3.2. 3.3 upgrade then becomes a relatively small copy of the byo entry point, all calling the same code as 3.2 upgrade. Thus far there are no known 3.3 specific upgrade tasks. In future we will likely want to allow hooks out to version specific pre/upgrade/post tasks. Also fixes a bug where the handlers were not restarting nodes/openvswitch containers doing upgrades, due to a change in Ansible 2+.
* | Add missing nuke_images.sh symlink.Devan Goodwin2016-07-221-0/+1
|/
* Merge pull request #2168 from dgoodwin/container-cli-speedScott Dodson2016-07-211-0/+2
|\ | | | | Copy openshift binary instead of using wrapper script.
| * Stop reporting changes when docker pull is already up to date.Devan Goodwin2016-07-201-0/+2
| |
* | Merge pull request #2175 from dgoodwin/origin-12-rpm-upgradeScott Dodson2016-07-191-2/+6
|\ \ | | | | | | Fix bugs with origin 1.2 rpm based upgrades.
| * | Fix bugs with origin 1.2 rpm based upgrades.Devan Goodwin2016-07-191-2/+6
| |/
* / Skip docker upgrades on Atomic.Devan Goodwin2016-07-191-2/+2
|/
* Fix upgrades with an openshift_image_tag set.Devan Goodwin2016-07-121-1/+1
|
* Remove/update TODOs.Devan Goodwin2016-07-081-1/+2
|
* Remove all debug used during devel of openshift_version.Devan Goodwin2016-07-081-2/+0
|
* Merge branch 'aoi-32-up' into upgrade33Devan Goodwin2016-07-081-1/+1
|\
| * Fix dnf variant of rpm_versions.shScott Dodson2016-07-051-1/+1
| |
* | Add symlinks for node templates.Devan Goodwin2016-07-044-0/+4
| | | | | | | | | | | | | | This is an unfortunate side effect of including a role yaml file in a playbook, ideally we would just run the full node role here. For now we'll follow the lead for the master template.
* | Merge branch 'master' into upgrade33Devan Goodwin2016-07-042-11/+15
|\|
| * Switch to repoquery, enable plugins for satellite supportScott Dodson2016-06-291-3/+7
| |
* | Fixes for non-containerized separate etcd hosts.Devan Goodwin2016-06-282-5/+2
| |
* | Merge branch 'master' into upgrade33Devan Goodwin2016-06-281-1/+4
|\|
| * Don't upgrade docker on non-containerized etcd.Andrew Butcher2016-06-242-1/+13
| |
| * Access embedded_etcd variable from oo_first_master hostvars.Andrew Butcher2016-06-241-1/+1
| |
* | More docker upgrade fixes.Devan Goodwin2016-06-273-22/+17
| |
* | Only nuke images when crossing the Docker 1.10 boundary in upgrade.Devan Goodwin2016-06-274-24/+26
| |
* | Fix node/openvswitch containers not restarting after upgrade.Devan Goodwin2016-06-241-1/+1
| |
* | Allow skipping Docker upgrade during OpenShift upgrade.Devan Goodwin2016-06-242-0/+16
| |
* | Refactor 3.2 upgrade to avoid killing nodes without evac.Devan Goodwin2016-06-238-74/+150
| | | | | | | | | | We now handle the two pieces of upgrade that require a node evac in the same play. (docker, and node itself)
* | Update docker upgrade playbook to be more flexible.Devan Goodwin2016-06-231-1/+0
| | | | | | | | | | | | | | | | | | | | Now more of a generic upgrade playbook to go to the latest Docker version. Added support for docker_version inventory variable, in which case we disable the check for >= 1.10 and make sure you're running at least the specified version. (we will not downgrade you to the requested version however, this is much too complicated)
* | Merge branch 'master' into upgrade33Devan Goodwin2016-06-232-0/+13
|\|
| * If registry_url != registry.access.redhat.com then modify image streamsScott Dodson2016-06-174-0/+4
| |
| * Merge pull request #2041 from dgoodwin/no-proxy-hostnamesScott Dodson2016-06-141-0/+12
| |\ | | | | | | Fix no proxy hostnames during upgrade.
| | * Fix no proxy hostnames during upgrade.Devan Goodwin2016-06-141-0/+12
| | | | | | | | | | | | | | | | | | | | | | | | | | | This value not being set was causing missing hostnames in the sysconfig files with NO_PROXY. This is not the same way we set it during config playbooks, they use vars definitions but this is too difficult in upgrade as there are too many roles that might need it set.
* | | Use common fact initialization include in upgrade.Devan Goodwin2016-06-211-2/+4
| | |
* | | Fix use of v3.2 format for openshift_release in upgrade.Devan Goodwin2016-06-211-0/+4
| | |
* | | Remove more legacy upgrade playbooks.Devan Goodwin2016-06-2114-157/+0
| | |
* | | Upgrade fixes.Devan Goodwin2016-06-172-26/+5
| | |
* | | Cleanup, fix 3.1 version bug in facts.Devan Goodwin2016-06-162-4/+3
| | |