summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
* Fix OpenShift registry deployment on OSE 3.2Lénaïc Huard2017-04-253-33/+51
| | | | Fix #4000
* Automatic commit of package [openshift-ansible] release [3.6.35-1].Jenkins CD Merge Bot2017-04-232-2/+5
| | | | | | Created by command: /usr/bin/tito tag --accept-auto-changelog
* Automatic commit of package [openshift-ansible] release [3.6.34-1].Jenkins CD Merge Bot2017-04-212-2/+6
| | | | | | Created by command: /usr/bin/tito tag --accept-auto-changelog
* Merge pull request #3945 from jarrpa/glusterfs-fix-gceOpenShift Bot2017-04-211-3/+3
|\ | | | | Merged by openshift-bot
| * GlusterFS: provide default for groups.oo_glusterfs_to_config in with_itemsJose A. Rivera2017-04-181-3/+3
| | | | | | | | | | | | | | | | Workaround for the following "as intended"/"won't fix" bug: https://github.com/ansible/ansible/issues/13598 Signed-off-by: Jose A. Rivera <jarrpa@redhat.com>
* | Automatic commit of package [openshift-ansible] release [3.6.33-1].Jenkins CD Merge Bot2017-04-212-2/+9
| | | | | | | | | | | | Created by command: /usr/bin/tito tag --accept-auto-changelog
* | Merge pull request #3944 from pilou-/add_missing_mock_for_oc_binaryOpenShift Bot2017-04-213-10/+35
|\ \ | | | | | | Merged by openshift-bot
| * | Use return_value when value is constantPierre-Louis Bonicoli2017-04-181-8/+2
| | | | | | | | | | | | Thanks to Tim Bielawa for pointing it out.
| * | Add missing mock for locate_oc_binary methodPierre-Louis Bonicoli2017-04-183-6/+37
| | | | | | | | | | | | | | | When locate_oc_binary has not been mocked, the test suite fails when oc executable is available.
* | | Merge pull request #3904 from kwoodson/manageiq_idempotenceyKenny Woodson2017-04-217-103/+81
|\ \ \ | | | | | | | | [openshift_manageiq] Adding module calls instead of command for idempotency.
| * | | Adding module calls instead of command for idempotency.Kenny Woodson2017-04-197-103/+81
| | | |
* | | | Automatic commit of package [openshift-ansible] release [3.6.32-1].Scott Dodson2017-04-212-2/+5
| | | | | | | | | | | | | | | | | | | | | | | | Created by command: /usr/bin/tito tag
* | | | Merge pull request #3966 from sdodson/dont-check-disabled-excludersScott Dodson2017-04-211-6/+7
|\ \ \ \ | | | | | | | | | | Don't check excluder versions when they're not enabled
| * | | | Don't check excluder versions when they're not enabledScott Dodson2017-04-201-6/+7
| | | | |
* | | | | Automatic commit of package [openshift-ansible] release [3.6.31-1].Jenkins CD Merge Bot2017-04-212-2/+6
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Created by command: /usr/bin/tito tag --accept-auto-changelog
* | | | | Merge pull request #3943 from sdodson/fix-node-upgrade-masterJan Chaloupka2017-04-213-34/+26
|\ \ \ \ \ | |/ / / / |/| | | | Stop all services prior to upgrading, start all services after
| * | | | Stop all services prior to upgrading, start all services afterScott Dodson2017-04-183-34/+26
| | | | |
* | | | | Automatic commit of package [openshift-ansible] release [3.6.30-1].Jenkins CD Merge Bot2017-04-202-2/+17
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Created by command: /usr/bin/tito tag --accept-auto-changelog
* | | | | Merge pull request #3919 from rhcarvalho/fix-action-plugin-test-ansible2.3Rodolfo Carvalho2017-04-201-1/+3
|\ \ \ \ \ | | | | | | | | | | | | Fix instantiation of action plugin test to support Ansible 2.3
| * | | | | Fix instantiation of action plugin in test fixtureRodolfo Carvalho2017-04-131-1/+3
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | In Ansible 2.3+, the base action plugin class' run method depends on accessing attributes (check_mode) of its play_context. In older versions play_context was not involved in run, and thus None was passed in.
* | | | | | Merge pull request #3518 from juanvallejo/jvallejo/ram_disk_space_checkerRodolfo Carvalho2017-04-205-10/+362
|\ \ \ \ \ \ | | | | | | | | | | | | | | add ram and non-containerized storage preflight check
| * | | | | | Simplify memory availability check, review testsRodolfo Carvalho2017-04-173-74/+87
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | - Fix required memory for etcd hosts (10 -> 20 GB), as per documentation. - Some changes to make the code more similar to the similar DiskAvailability check. - Do not raise exception for hosts that do not have a recommended memory value (those are ignored anyway through `is_active`, so that was essentially dead code). - Test that the required memory is the max of the recommended memories for all groups assigned to a host. E.g. if a host is master and node, we should check that it has enough memory to be a master, because the memory requirement for a master is higher than for a node.
| * | | | | | Simplify mixin classRodolfo Carvalho2017-04-171-10/+7
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | - Expose only is_active and no other method. - Move general comment to module docstring.
| * | | | | | Simplify disk availability check, review testsRodolfo Carvalho2017-04-172-124/+165
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | - only support a fixed list of recommended values for now, no overwriting via Ansible variables (keep it simple, add features as needed). - implement is_active: run this check only for hosts that have a recommended disk space. - test priority of mount paths / and /var.
| * | | | | | add disk and memory availability check testsjuanvallejo2017-04-173-1/+194
| | | | | | |
| * | | | | | add ram and storage preflight checkjuanvallejo2017-04-172-0/+108
| | |/ / / / | |/| | | |
* | | | | | Merge pull request #3938 from mtnbikenc/syntax-checkOpenShift Bot2017-04-192-1/+49
|\ \ \ \ \ \ | | | | | | | | | | | | | | Merged by openshift-bot
| * | | | | | Add Ansible syntax checks to toxRussell Teague2017-04-192-1/+49
| | | | | | |
* | | | | | | Merge pull request #3733 from lukas-vlcek/es_readiness_probeOpenShift Bot2017-04-191-0/+7
|\ \ \ \ \ \ \ | | | | | | | | | | | | | | | | Merged by openshift-bot
| * | | | | | | Introduce Elasticsearch readiness probeLukáš Vlček2017-04-071-0/+7
| | | | | | | |
* | | | | | | | Merge pull request #3955 from Fale/fix_etcd_pathsOpenShift Bot2017-04-191-1/+1
|\ \ \ \ \ \ \ \ | | | | | | | | | | | | | | | | | | Merged by openshift-bot
| * | | | | | | | Add /etc/sysconfig/etcd to etcd_containerFabio Alessandro Locati2017-04-191-1/+1
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | The `/etc/sysconfig/etcd` file is often used to allow the usage of additional variables passed to the etcd daemon. Example of this is to make some new nodes join an existing cluster. Having two files simplify the automation around it, since in the `/etc/sysconfig/etcd` is possible to put temporary variables and then nuke the file as soon as they are not used anymore.
* | | | | | | | | Merge pull request #3949 from ↵OpenShift Bot2017-04-191-18/+38
|\ \ \ \ \ \ \ \ \ | |_|_|/ / / / / / |/| | | | | | | | | | | | | | | | | | | | | | | | | | sosiouxme/20170418-improve-openshift-version-msging Merged by openshift-bot
| * | | | | | | | openshift_version: improve messagingLuke Meyer2017-04-181-18/+38
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | This role often provides the first failure messages when users' inventory parameters are not going to work out. So, make sure the task names and messages are informative to someone who may not have very much context for what this role does.
* | | | | | | | | Merge pull request #3936 from mtnbikenc/fix-ca-pathsRussell Teague2017-04-191-3/+3
|\ \ \ \ \ \ \ \ \ | |_|_|_|_|_|/ / / |/| | | | | | | | BZ 1442942: Fix paths for file includes
| * | | | | | | | Fix paths for file includesRussell Teague2017-04-171-3/+3
| | | | | | | | |
* | | | | | | | | Merge pull request #3797 from mwoodson/contiv_empty_dirScott Dodson2017-04-191-0/+3
|\ \ \ \ \ \ \ \ \ | |_|_|/ / / / / / |/| | | | | | | | added a empty file to the contiv empty dir. This allows contiv to be vendored in git
| * | | | | | | | added a empty file to the contiv empty dir. This allows contiv to be ↵Matt Woodson2017-03-291-0/+3
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | vendored in git
* | | | | | | | | Automatic commit of package [openshift-ansible] release [3.6.29-1].Jenkins CD Merge Bot2017-04-192-2/+5
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Created by command: /usr/bin/tito tag --accept-auto-changelog
* | | | | | | | | Merge pull request #3948 from mtnbikenc/metrics-fixScott Dodson2017-04-182-0/+6
|\ \ \ \ \ \ \ \ \ | | | | | | | | | | | | | | | | | | | | Create openshift-metrics entrypoint playbook
| * | | | | | | | | Create openshift-metrics entrypoint playbookRussell Teague2017-04-182-0/+6
| | |_|_|_|_|_|/ / | |/| | | | | | |
* | | | | | | | | Automatic commit of package [openshift-ansible] release [3.6.28-1].Jenkins CD Merge Bot2017-04-182-2/+5
| |_|_|/ / / / / |/| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Created by command: /usr/bin/tito tag --accept-auto-changelog
* | | | | | | | Merge pull request #3947 from mtnbikenc/upgrade-v3_6Scott Dodson2017-04-182-6/+9
|\ \ \ \ \ \ \ \ | | | | | | | | | | | | | | | | | | Minor v3.6 upgrade docs fixes
| * | | | | | | | Minor v3.6 upgrade docs fixesRussell Teague2017-04-182-6/+9
| |/ / / / / / /
* | | | | | | | Automatic commit of package [openshift-ansible] release [3.6.27-1].Jenkins CD Merge Bot2017-04-182-2/+5
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Created by command: /usr/bin/tito tag --accept-auto-changelog
* | | | | | | | Merge pull request #3890 from jlebon/redhat-ciScott Dodson2017-04-182-0/+67
|\ \ \ \ \ \ \ \ | |/ / / / / / / |/| | | | | | | repo: start testing PRs on Fedora Atomic Host
| * | | | | | | repo: start testing PRs on Fedora Atomic HostJonathan Lebon2017-04-122-0/+67
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | This patch adds a YAML file to hook up the repo to redhat-ci: https://github.com/jlebon/redhat-ci It is much like Travis CI: a YAML file describes the testing environment as well as the tests themselves. However, it is more powerful than Travis CI in terms of what it can provision. (For example, in this patch, we're running two testsuites, each of them provisioning three nodes and one container). For more details on supported fields, see: https://github.com/jlebon/redhat-ci/blob/master/sample.redhat-ci.yml The tests we add here simply check that the installer runs successfully on Fedora Atomic Host and that the resulting cluster passes some basic conformance tests. We target both v1.5.0-rc.0 and v3.6.0-alpha.0.
* | | | | | | | Automatic commit of package [openshift-ansible] release [3.6.26-1].Jenkins CD Merge Bot2017-04-182-2/+8
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Created by command: /usr/bin/tito tag --accept-auto-changelog
* | | | | | | | Merge pull request #3937 from mtnbikenc/fix-openshift-node-upgradeOpenShift Bot2017-04-171-0/+1
|\ \ \ \ \ \ \ \ | |_|_|_|_|_|_|/ |/| | | | | | | Merged by openshift-bot
| * | | | | | | Correct role dependenciesRussell Teague2017-04-171-0/+1
| | |_|/ / / / | |/| | | | |