summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2016-06-27Only nuke images when crossing the Docker 1.10 boundary in upgrade.Devan Goodwin
2016-06-24Fix node/openvswitch containers not restarting after upgrade.Devan Goodwin
2016-06-24Allow skipping Docker upgrade during OpenShift upgrade.Devan Goodwin
2016-06-23Refactor 3.2 upgrade to avoid killing nodes without evac.Devan Goodwin
We now handle the two pieces of upgrade that require a node evac in the same play. (docker, and node itself)
2016-06-23Update docker upgrade playbook to be more flexible.Devan Goodwin
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)
2016-06-23Merge branch 'master' into upgrade33Devan Goodwin
2016-06-22Add missing defaults file.Devan Goodwin
2016-06-22Merge pull request #2070 from sdodson/image-stream-syncScott Dodson
Image stream sync
2016-06-22Update the rest of the templatesScott Dodson
2016-06-22Update logging and metrics templatesScott Dodson
2016-06-21Use common fact initialization include in upgrade.Devan Goodwin
2016-06-21Fix use of v3.2 format for openshift_release in upgrade.Devan Goodwin
2016-06-21Remove more legacy upgrade playbooks.Devan Goodwin
2016-06-20Fix docker restarts during openshift_version role.Devan Goodwin
The variable here must be explicitly passed to the docker role, if it's passed sometimes and not others, the docker config changes triggers a docker restart effectively killing everything on the node in an unsafe manner. Instead lets make sure the value is set.
2016-06-20Support setting a docker version in inventory.Devan Goodwin
2016-06-17Fix version facts with trailing newline.Devan Goodwin
2016-06-17Merge pull request #2055 from sdodson/bz1347209Scott Dodson
Stop dumping debug output, re-try startng the node once
2016-06-17Merge pull request #1925 from sdodson/disconnected-image-streamsScott Dodson
If registry_url != registry.access.redhat.com then modify image streams
2016-06-17If registry_url != registry.access.redhat.com then modify image streamsScott Dodson
2016-06-17Add 30 second pause before retrying to start the nodeScott Dodson
2016-06-17Document the new and old version variables.Devan Goodwin
2016-06-17Normalize some of the version inventory vars which users might mistakenly ↵Devan Goodwin
enter wrong.
2016-06-17Check that detected version matches openshift_release in rpm installations.Devan Goodwin
2016-06-17Block attempts to install origin without specifying any release info.Devan Goodwin
2016-06-17More stable lookup of running openshift version.Devan Goodwin
2016-06-17Upgrade fixes.Devan Goodwin
2016-06-16Stop dumping debug output, re-try startng the node onceScott Dodson
2016-06-16Fix typo in facts.Devan Goodwin
2016-06-16Cleanup, fix 3.1 version bug in facts.Devan Goodwin
2016-06-16More version fixes.Devan Goodwin
2016-06-15Support origin alpha tags.Devan Goodwin
2016-06-15More stable containerized version lookup.Devan Goodwin
2016-06-15Merge pull request #2037 from ibotty/docker-current_fixesScott Dodson
also volume-mount /etc/sysconfig/docker
2016-06-15Remove old upgrade playbooks.Devan Goodwin
2016-06-15Merge pull request #2046 from talset/uninstall_indentScott Dodson
Fix uninstall.yml indentation for deamon-reload
2016-06-15Fix performance hit in openshift_facts.Devan Goodwin
2016-06-15Always populate openshift_image_tag and openshift_pkg_version.Devan Goodwin
Allows the use of arbitrary tags, precise control over containers and rpms, and likely mixed environments.
2016-06-15Fix uninstall.yml indentation for deamon-reloadtalset
* command: systemctl daemon-reload need to be at the task level, not in the with_items
2016-06-14Merge pull request #2041 from dgoodwin/no-proxy-hostnamesScott Dodson
Fix no proxy hostnames during upgrade.
2016-06-14Merge pull request #2038 from dgoodwin/node-dep-startScott Dodson
Attempt to fix containerized node start failure with Docker 1.10.
2016-06-14Fix no proxy hostnames during upgrade.Devan Goodwin
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.
2016-06-14Merge pull request #2032 from abutcher/uninstall-groupsScott Dodson
Separate uninstall plays by group.
2016-06-14Attempt to fix containerized node start failure with Docker 1.10.Devan Goodwin
It appears that in some situations (can't reliably reproduce yet), node will fail to start. This appears to be related to the node-dep service and possibly it's environment file. This file is also an EnvironmentFile for the node service, but it's only created by the node-dep service, and it looks like it may try to read it's environment before the node-dep service has fully started and created the file. Workaround with a an explicit service start.
2016-06-14also volume-mount /etc/sysconfig/dockerTobias Florek
2016-06-13Merge pull request #2020 from dgoodwin/docker-upgrade-servicesScott Dodson
Fix docker 1.10 upgrade on embedded etcd masters.
2016-06-13Remove the use of the upgrading variable.Devan Goodwin
2016-06-13Don't be specific about rpm version to upgrade to for now.Devan Goodwin
2016-06-13Restore 3.2 RPM version check before upgrading.Devan Goodwin
2016-06-13Separate uninstall plays by group.Andrew Butcher
2016-06-13Make openshift_version role docker dep conditional.Devan Goodwin