| Age | Commit message (Collapse) | Author | |
|---|---|---|---|
| 2016-04-12 | Fetching the current version a little more carefully | Brenton Leanhardt | |
| Previously we were trying to use the running container to get the current version. There are cases in which the Master or Node may not be running during upgrade. It's actually safer to just run the container to fetch the version that would be launch if the container were running. Then we pull the image to see what the latest image contains. | |||
| 2016-04-12 | Make sure Docker is restarted after we have correctly configured the ↵ | Brenton Leanhardt | |
| containerized systemd units | |||
| 2016-04-12 | use RestartSec to avoid default rate limit in systemd | Brenton Leanhardt | |
| Lifted from https://github.com/openshift/origin/pull/8317 | |||
| 2016-04-12 | Installs and upgrades from authenticated registries are not supported for now | Brenton Leanhardt | |
| 2016-04-12 | Handle cases where the pacemaker variables aren't set | Brenton Leanhardt | |
| 2016-04-12 | Containerized installs on RHEL were downgrading docker unnecessarily | Brenton Leanhardt | |
| 2016-04-12 | Merge pull request #1705 from abutcher/secure-router | Brenton Leanhardt | |
| Add support for creating secure router | |||
| 2016-04-11 | Automatic commit of package [openshift-ansible] release [3.0.77-1]. | Troy Dawson | |
| 2016-04-11 | Merge pull request #1740 from dgoodwin/docker-sysconfig | Brenton Leanhardt | |
| Fix a docker-storage sysconfig bug. | |||
| 2016-04-11 | Add support for creating secure router. | Andrew Butcher | |
| * Move openshift_router to openshift_hosted role which will eventually contain registry, metrics and logging. * Adds option for specifying an openshift_hosted_router_certificate cert and key pair. * Removes dependency on node label variables and retrieves the node list from the API s.t. this role can be applied to any cluster with existing nodes. I've added an openshift_hosted playbook that occurs after node install to account for this. * Infrastructure nodes are selected using openshift_hosted_router_selector which is based on deployment type by default; openshift-enterprise -> "region=infra" and online -> "type=infra". | |||
| 2016-04-11 | Fix a docker-storage sysconfig bug. | Devan Goodwin | |
| 2016-04-08 | Merge pull request #1736 from maxamillion/bootstrap-fedora | Brenton Leanhardt | |
| update bootstrap-fedora to include python2-firewall for F24+ | |||
| 2016-04-08 | update bootstrap-fedora to include python2-firewall for F24+ | Adam Miller | |
| Signed-off-by: Adam Miller <maxamillion@fedoraproject.org> | |||
| 2016-04-08 | Merge pull request #1733 from abutcher/hosted-facts | Brenton Leanhardt | |
| Fix hosted facts | |||
| 2016-04-08 | Automatic commit of package [openshift-ansible] release [3.0.76-1]. | Troy Dawson | |
| 2016-04-08 | Merge openshift_env hostvars. | Andrew Butcher | |
| 2016-04-08 | Merge pull request #1735 from smunilla/BZ1323918 | Brenton Leanhardt | |
| a-o-i: Support openshift_image_tag | |||
| 2016-04-08 | a-o-i: Support openshift_image_tag | Samuel Munilla | |
| Somewhat hacky solution to let users install containerized 3.1. A more flexible version will be forthcoming once we settle tagging issues. | |||
| 2016-04-08 | Add openshift_hosted_facts role and remove hosted facts from openshift_common. | Andrew Butcher | |
| 2016-04-08 | Merge pull request #1728 from brenton/bz1324729 | Brenton Leanhardt | |
| Bug 1324729 - Import xPaas image streams failed during 3.2 installation | |||
| 2016-04-07 | Merge pull request #1720 from abutcher/fix-docker-install | Brenton Leanhardt | |
| Test docker_version_result.stdout when determining if docker should be installed/downgraded. | |||
| 2016-04-07 | Bug 1324729 - Import xPaas image streams failed during 3.2 installation | Brenton Leanhardt | |
| 2016-04-07 | Automatic commit of package [openshift-ansible] release [3.0.75-1]. | Troy Dawson | |
| 2016-04-07 | Merge pull request #1719 from kwoodson/oadmrouter | Kenny Woodson | |
| oadm_router first attempt. | |||
| 2016-04-07 | First attempt at oadm router module | Kenny Woodson | |
| 2016-04-07 | Merge pull request #1724 from abutcher/nfs-no-common | Brenton Leanhardt | |
| Bug 1324371: needn't install atomic-openshift packages on nfs server | |||
| 2016-04-07 | Merge pull request #1722 from abutcher/containerized-cloudprovider | Brenton Leanhardt | |
| Add cloudprovider config dir to docker options. | |||
| 2016-04-06 | Merge pull request #1699 from abutcher/check-cloudprovider-kind | Brenton Leanhardt | |
| Check for kind in cloudprovider facts prior to accessing. | |||
| 2016-04-06 | Automatic commit of package [openshift-ansible] release [3.0.74-1]. | Brenton Leanhardt | |
| 2016-04-06 | Remove openshift_common dep from openshift_storage_nfs | Andrew Butcher | |
| 2016-04-06 | Merge pull request #1660 from dgoodwin/admission-config | Brenton Leanhardt | |
| Add support for templating master admissionConfig. | |||
| 2016-04-06 | Automatic commit of package [openshift-ansible] release [3.0.73-1]. | Troy Dawson | |
| 2016-04-06 | Merge pull request #1723 from dgoodwin/osbs-dockerfile | Brenton Leanhardt | |
| Replace unused Dockerfile with one used for official builds. | |||
| 2016-04-06 | Replace unused Dockerfile with one used for official builds. | Devan Goodwin | |
| A container that can be used to run the atomic-openshift-installer, or by bypassing the entrypoint can be used to run ansible playbooks directly. Expects the user to mount a directory to /var/lib/openshift, where we'll write out the installer.cfg, ansible.log, and hosts inventory. WARNING: Don't run this on a host you're installing to, installation restarts Docker which will kill your installer. Example of running the quick installer: docker run -ti -v ~/openshift/:/var/lib/openshift-installer/:Z -v ~/.ssh:/root/.ssh:Z openshift3/installer install Example of running ansible directly: docker run --entrypoint=/usr/bin/ansible-playbook -ti -v ~/openshift/:/var/lib/openshift-installer/:Z -v ~/.ssh:/root/.ssh:Z openshift3/installer -i /openshift-installer/install/.ansible/hosts /usr/share/ansible/openshift-ansible/playbooks/adhoc/uninstall.yml | |||
| 2016-04-06 | Merge pull request #1721 from kwoodson/userrefresh | Kenny Woodson | |
| Adding refresh for zbx_user. | |||
| 2016-04-06 | Update for zbx_user refresh | Kenny Woodson | |
| 2016-04-06 | Test docker_version_result.stdout when determining if docker should be ↵ | Andrew Butcher | |
| installed/downgraded. | |||
| 2016-04-06 | Merge pull request #1717 from sdodson/origin-docker-funtimes | Brenton Leanhardt | |
| Docker 1.9 is actually cool starting in origin 1.1.4 | |||
| 2016-04-06 | Merge pull request #1716 from brenton/unmask1 | Brenton Leanhardt | |
| Unmask services | |||
| 2016-04-06 | Add cloudprovider config dir to docker options. | Andrew Butcher | |
| 2016-04-06 | Docker 1.9 is actually cool starting in origin 1.1.4 | Scott Dodson | |
| 2016-04-06 | Unmask services | Brenton Leanhardt | |
| Unmasking etcd is is important when switching from containerized installs to RPM installs | |||
| 2016-04-06 | Merge pull request #1695 from brenton/bz1323123 | Brenton Leanhardt | |
| Fixing bugs 1322788 and 1323123 | |||
| 2016-04-06 | Merge pull request #1698 from sdodson/xpaas13 | Brenton Leanhardt | |
| XPAAS v1.3 content | |||
| 2016-04-05 | Merge pull request #1654 from dgoodwin/gen-inventory | Brenton Leanhardt | |
| Add --gen-inventory command to atomic-openshift-installer. | |||
| 2016-04-05 | Automatic commit of package [openshift-ansible] release [3.0.72-1]. | Troy Dawson | |
| 2016-04-05 | Merge pull request #1708 from mwoodson/docker-bug | Matt Woodson | |
| when docker is installed, make it 1.8.2 to avoid issues | |||
| 2016-04-05 | when docker is installed, make it 1.8.2 to avoid issues | Matt Woodson | |
| 2016-04-05 | Merge pull request #1700 from brenton/32ha | Brenton Leanhardt | |
| Pacemaker is unsupported for 3.2 | |||
| 2016-04-05 | Merge pull request #1577 from brenton/docker19 | Brenton Leanhardt | |
| We require docker 1.9 for the 3.2 upgrade | |||
