| Age | Commit message (Collapse) | Author | |
|---|---|---|---|
| 2017-05-09 | Note existence of Fedora tests and how to rerun | Rodolfo Carvalho | |
| 2017-05-08 | Automatic commit of package [openshift-ansible] release [3.6.60-1]. | Jenkins CD Merge Bot | |
| Created by command: /usr/bin/tito tag --accept-auto-changelog | |||
| 2017-05-08 | Automatic commit of package [openshift-ansible] release [3.6.59-1]. | Jenkins CD Merge Bot | |
| Created by command: /usr/bin/tito tag --accept-auto-changelog | |||
| 2017-05-08 | Merge pull request #4026 from ewolinetz/cherry_picks_15 | OpenShift Bot | |
| Merged by openshift-bot | |||
| 2017-05-08 | Automatic commit of package [openshift-ansible] release [3.6.58-1]. | Jenkins CD Merge Bot | |
| Created by command: /usr/bin/tito tag --accept-auto-changelog | |||
| 2017-05-08 | Merge pull request #4114 from jupierce/move_images | Scott Dodson | |
| Moving Dockerfile content to images dir | |||
| 2017-05-08 | Moving Dockerfile content to images dir | jupierce | |
| 2017-05-08 | Automatic commit of package [openshift-ansible] release [3.6.57-1]. | Jenkins CD Merge Bot | |
| Created by command: /usr/bin/tito tag --accept-auto-changelog | |||
| 2017-05-07 | Automatic commit of package [openshift-ansible] release [3.6.56-1]. | Jenkins CD Merge Bot | |
| Created by command: /usr/bin/tito tag --accept-auto-changelog | |||
| 2017-05-06 | Automatic commit of package [openshift-ansible] release [3.6.55-1]. | Jenkins CD Merge Bot | |
| Created by command: /usr/bin/tito tag --accept-auto-changelog | |||
| 2017-05-05 | Merge pull request #4103 from ganhuang/fix_container_engine | OpenShift Bot | |
| Merged by openshift-bot | |||
| 2017-05-05 | Fix 1448368, and some other minors issues | Gan Huang | |
| 2017-05-05 | Merge pull request #4093 from richm/mux-result-startup-fix | Scott Dodson | |
| mux startup is broken without this fix | |||
| 2017-05-05 | Merge pull request #3720 from giuseppe/installer-system-container | Scott Dodson | |
| Installer as a system container | |||
| 2017-05-05 | Automatic commit of package [openshift-ansible] release [3.6.54-1]. | Jenkins CD Merge Bot | |
| Created by command: /usr/bin/tito tag --accept-auto-changelog | |||
| 2017-05-04 | Merge pull request #4077 from ingvagabund/move-etcdctl-profiles-to-etcd-common | Jan Chaloupka | |
| move etcdctl.yml from etcd to etcd_common role | |||
| 2017-05-04 | Merge pull request #4044 from mtnbikenc/clean-cache | OpenShift Bot | |
| Merged by openshift-bot | |||
| 2017-05-04 | Merge pull request #4089 from mtnbikenc/unicode-decode | OpenShift Bot | |
| Merged by openshift-bot | |||
| 2017-05-04 | Merge pull request #4071 from ewolinetz/cherry_pick_htpasswd | OpenShift Bot | |
| Merged by openshift-bot | |||
| 2017-05-04 | mux startup is broken without this fix | Rich Megginson | |
| 2017-05-04 | Automatic commit of package [openshift-ansible] release [3.6.53-1]. | Jenkins CD Merge Bot | |
| Created by command: /usr/bin/tito tag --accept-auto-changelog | |||
| 2017-05-03 | Merge pull request #4085 from ewolinetz/pick_issue4083 | OpenShift Bot | |
| Merged by openshift-bot | |||
| 2017-05-03 | Merge pull request #4049 from ashcrow/system-container-docker | OpenShift Bot | |
| Merged by openshift-bot | |||
| 2017-05-03 | Allow oc_ modules to pass unicode results | Russell Teague | |
| 2017-05-03 | Merge pull request #4080 from dgoodwin/aws-cred-no-log | OpenShift Bot | |
| Merged by openshift-bot | |||
| 2017-05-03 | Ensure repo cache is clean on the first run | Russell Teague | |
| The openshift_repos role is modified to clean the repo cache on first run to ensure a clean cache in the situation where the repo files have been changed manually, such as just prior to upgrades. | |||
| 2017-05-03 | Merge pull request #4062 from abutcher/atomicf25 | OpenShift Bot | |
| Merged by openshift-bot | |||
| 2017-05-03 | Correctly setting the primary and replica shard count settings | ewolinetz | |
| 2017-05-03 | Merge pull request #4011 from jlebon/pr/rhci-fixes | OpenShift Bot | |
| Merged by openshift-bot | |||
| 2017-05-03 | System container docker | Steve Milner | |
| This change allows for the use of either the traditional package install of docker OR a system container install of docker. Two new inventory options, openshift_docker_use_system_container and openshift_docker_systemcontainer_image_registry_override, have been added which are be used to install with a system container. By default this option is commented out. One new fact has been added: - docker.service_name: docker by default, container-engine-docker for system container | |||
| 2017-05-03 | Stop logging AWS credentials in master role. | Devan Goodwin | |
| Using lineinfile and with_items, the items end up logged and in this case include AWS credentials. Simple us of no_log to hide them. | |||
| 2017-05-03 | Dockerfile: create symlink for /opt/app-root/src | Giuseppe Scrivano | |
| and point it to /usr/share/ansible/openshift-ansible so that the file paths for this image are the same as for the Dockerfile.rhel7 image. Signed-off-by: Giuseppe Scrivano <gscrivan@redhat.com> | |||
| 2017-05-03 | docs: Add basic system container dev docs | Steve Milner | |
| 2017-05-03 | installer: Add system container variable for log saving | Steve Milner | |
| A new environment variable, VAR_LOG_ANSIBLE_LOG, was created to allow the installer to bind mount the location and write the log back to the host. By default the value is /var/log/ansible.log Example: atomic install --system --set INVENTORY_FILE=$(pwd)/hosts.inventory \ --set SSH_ROOT=/root/.ssh \ --set VAR_LOG_ANSIBLE_LOG=/some/log/location/ansible.log \ --set PLAYBOOK_FILE=./playbooks/byo/config.yml openshift-ansible | |||
| 2017-05-03 | installer: support running as a system container | Giuseppe Scrivano | |
| Example: atomic install --system --set INVENTORY_FILE=$(pwd)/hosts.inventory \ --set SSH_ROOT=/root/.ssh \ --set PLAYBOOK_FILE=./playbooks/byo/config.yml openshift-ansible Signed-off-by: Giuseppe Scrivano <gscrivan@redhat.com> | |||
| 2017-05-03 | Automatic commit of package [openshift-ansible] release [3.6.52-1]. | Jenkins CD Merge Bot | |
| Created by command: /usr/bin/tito tag --accept-auto-changelog | |||
| 2017-05-03 | move etcdctl.yml from etcd to etcd_common role | Jan Chaloupka | |
| 2017-05-02 | Merge pull request #4070 from ewolinetz/mux_scaleup_fix | OpenShift Bot | |
| Merged by openshift-bot | |||
| 2017-05-02 | Merge pull request #4068 from mtnbikenc/fix-variants | Scott Dodson | |
| Fix variants for v3.6 | |||
| 2017-05-02 | Merge pull request #4038 from mtnbikenc/upgrade-refactor | OpenShift Bot | |
| Merged by openshift-bot | |||
| 2017-05-02 | Merge pull request #4059 from sdodson/master-1.5-ca | OpenShift Bot | |
| Merged by openshift-bot | |||
| 2017-05-02 | Merge pull request #4045 from kwoodson/normalize_groups | OpenShift Bot | |
| Merged by openshift-bot | |||
| 2017-05-02 | Automatic commit of package [openshift-ansible] release [3.6.51-1]. | Jenkins CD Merge Bot | |
| Created by command: /usr/bin/tito tag --accept-auto-changelog | |||
| 2017-05-02 | Merge pull request #4053 from abutcher/rhsub-sans-std-include | OpenShift Bot | |
| Merged by openshift-bot | |||
| 2017-05-02 | Modified pick from release-1.5 for updating hawkular htpasswd generation | ewolinetz | |
| 2017-05-02 | Making mux with_items list evaluate as empty if didnt get objects before | ewolinetz | |
| 2017-05-02 | etcd Upgrade Refactor | Russell Teague | |
| * Renaming etcd_hosts_to_* to oo_etcd_hosts_to* * Moving host group evaluation to evaluate_groups.yml * Removing duplicate evaluate_groups.yml usage | |||
| 2017-05-02 | v3.3 Upgrade Refactor | Russell Teague | |
| 2017-05-02 | v3.4 Upgrade Refactor | Russell Teague | |
| 2017-05-02 | v3.5 Upgrade Refactor | Russell Teague | |
