Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Merge pull request #3308 from mtnbikenc/oc_label | Russell Teague | 2017-02-14 | 4 | -65/+10 |
|\ | | | | | Modify playbooks to use oc_label module | ||||
| * | Modify playbooks to use oc_label module | Russell Teague | 2017-02-14 | 4 | -77/+10 |
| | | |||||
* | | Merge pull request #3342 from mtnbikenc/oc_obj | Russell Teague | 2017-02-14 | 4 | -100/+127 |
|\ \ | | | | | | | Modify playbooks to use oc_obj module | ||||
| * | | Modify playbooks to use oc_obj module | Russell Teague | 2017-02-14 | 4 | -100/+127 |
| |/ | |||||
* | | Merge pull request #3291 from ashcrow/oc-route-module | Jan Chaloupka | 2017-02-14 | 3 | -93/+67 |
|\ \ | |/ |/| | [WIP] oc route commands now using the oc_route module | ||||
| * | oc route commands now using the oc_route module | Steve Milner | 2017-02-14 | 3 | -93/+67 |
| | | |||||
* | | Merge pull request #3289 from mtnbikenc/upgrade-common | Jan Chaloupka | 2017-02-14 | 2 | -43/+41 |
|\ \ | | | | | | | Modify playbooks to use oadm_manage_node module | ||||
| * | | Modify playbooks to use oadm_manage_node module | Russell Teague | 2017-02-13 | 2 | -43/+41 |
| | | | |||||
* | | | BZ1421834: increase the Heapster metric resolution to 30s | mwringe | 2017-02-13 | 3 | -5/+5 |
| | | | |||||
* | | | Merge pull request #3343 from sdodson/bz1419654 | Scott Dodson | 2017-02-13 | 1 | -19/+5 |
|\ \ \ | |/ / |/| | | BZ1419654 Remove legacy config_base fallback to /etc/openshift | ||||
| * | | Fix Bug 1419654 Remove legacy config_base fallback to /etc/openshift | Scott Dodson | 2017-02-13 | 1 | -19/+5 |
| | | | | | | | | | | | | | | | | | | | | | | | | If a host had /etc/openshift but not /etc/origin we were setting the config_base to /etc/openshift in some places but not all. This code was transitional in order to migrate between 3.0 and 3.1. Given that current playbooks are only supported when moving from the previous version to current version this should no longer be necessary. | ||||
* | | | Merge pull request #3306 from ingvagabund/oc_service | Jan Chaloupka | 2017-02-13 | 1 | -6/+5 |
|\ \ \ | |/ / |/| | | replace 'oc service' command with its lib_openshift equivalent | ||||
| * | | replace 'oc service' command with its lib_openshift equivalent | Jan Chaloupka | 2017-02-11 | 2 | -6/+6 |
| | | | |||||
* | | | Merge pull request #3299 from kwoodson/oc_env | Scott Dodson | 2017-02-13 | 7 | -0/+2582 |
|\ \ \ | | | | | | | | | Adding oc_env to lib_openshift. | ||||
| * | | | Fixing docs, linting, and comments. | Kenny Woodson | 2017-02-10 | 3 | -14/+24 |
| | | | | |||||
| * | | | Pleasing the linting bot. | Kenny Woodson | 2017-02-08 | 5 | -66/+7 |
| | | | | |||||
| * | | | Adding integration tests. | Kenny Woodson | 2017-02-08 | 4 | -257/+411 |
| | | | | |||||
| * | | | Adding oc_env to lib_openshift. | Kenny Woodson | 2017-02-08 | 6 | -0/+2477 |
| | | | | |||||
* | | | | Merge pull request #3313 from tbielawa/fix_expiry_playbook_paths | Tim Bielawa | 2017-02-13 | 7 | -89/+45 |
|\ \ \ \ | | | | | | | | | | | Make the cert expiry playbooks runnable | ||||
| * | | | | Include rpm/git paths in expiry README. | Tim Bielawa | 2017-02-10 | 1 | -21/+44 |
| | | | | | |||||
| * | | | | Make the cert expiry playbooks runnable | Tim Bielawa | 2017-02-09 | 6 | -68/+1 |
| | |/ / | |/| | | |||||
* | | | | Merge pull request #3234 from rhcarvalho/check-module | Scott Dodson | 2017-02-13 | 21 | -206/+424 |
|\ \ \ \ | |_|_|/ |/| | | | Replace multi-role checks with action-plugin-based checks | ||||
| * | | | Do not hard code package names | Rodolfo Carvalho | 2017-02-10 | 2 | -14/+17 |
| | | | | |||||
| * | | | Refactor code to access values from task_vars | Rodolfo Carvalho | 2017-02-10 | 4 | -17/+25 |
| | | | | |||||
| * | | | Document how to create new checks | Rodolfo Carvalho | 2017-02-10 | 2 | -0/+36 |
| | | | | |||||
| * | | | Introduce tag notation for checks | Rodolfo Carvalho | 2017-02-10 | 5 | -1/+34 |
| | | | | | | | | | | | | | | | | This allows us to refer to a group of checks using a single handle. | ||||
| * | | | Replace multi-role checks with action plugin | Rodolfo Carvalho | 2017-02-10 | 20 | -166/+330 |
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | This approach should make it easier to add new checks without having to write lots of YAML and doing things against Ansible (e.g. ignore_errors). A single action plugin determines what checks to run per each host, including arguments to the check. A check is implemented as a class with a run method, with the same signature as an action plugin and module, and is normally backed by a regular Ansible module. Each check is implemented as a separate Python file. This allows whoever adds a new check to focus solely in a single Python module, and potentially an Ansible module within library/ too. All checks are automatically loaded, and only active checks that are requested by the playbook get executed. | ||||
| * | | | Reword module documentation | Rodolfo Carvalho | 2017-02-10 | 1 | -6/+5 |
| | | | | |||||
| * | | | Separate import groups with a blank line | Rodolfo Carvalho | 2017-02-10 | 2 | -0/+3 |
| | | | | |||||
| * | | | Remove commented-out debugging code | Rodolfo Carvalho | 2017-02-10 | 2 | -28/+0 |
| | | | | |||||
* | | | | Merge pull request #3321 from ashcrow/oc-serviceaccount-module | Jan Chaloupka | 2017-02-11 | 9 | -69/+43 |
|\ \ \ \ | | | | | | | | | | | WIP: oc serviceaccount now done via oc_serviceaccount module | ||||
| * | | | | oc serviceaccount now done via oc_serviceaccount module | Steve Milner | 2017-02-10 | 9 | -69/+43 |
| | | | | | |||||
* | | | | | Merge pull request #3300 from ashcrow/oc-secret-module | Jan Chaloupka | 2017-02-11 | 1 | -8/+11 |
|\ \ \ \ \ | | | | | | | | | | | | | WIP: oc secrets now done via oc_secret module | ||||
| * | | | | | oc secrets now done via oc_secret module | Steve Milner | 2017-02-10 | 2 | -8/+12 |
| |/ / / / | |||||
* | | | | | Merge pull request #3307 from ingvagabund/oc_serviceaccount_secret | Jan Chaloupka | 2017-02-11 | 3 | -20/+13 |
|\ \ \ \ \ | | | | | | | | | | | | | Replace service account secrets handling with oc_serviceaccount_secret module | ||||
| * | | | | | Replace service account secrets handling with oc_serviceaccount_secret module | Jan Chaloupka | 2017-02-10 | 3 | -20/+13 |
| | |_|/ / | |/| | | | |||||
* | | | | | Merge pull request #3288 from simaishi/trigger_auto_true | Scott Dodson | 2017-02-10 | 2 | -6/+6 |
|\ \ \ \ \ | | | | | | | | | | | | | CFME: Set image change triggers to auto=true for OCP 3.4 | ||||
| * | | | | | Set image change triggers to auto=true for OCP 3.4 - for v1.5 | Satoe Imaishi | 2017-02-08 | 1 | -3/+3 |
| | | | | | | |||||
| * | | | | | Set image change triggers to auto=true for OCP 3.4 | Satoe Imaishi | 2017-02-08 | 1 | -3/+3 |
| | | | | | | | | | | | | | | | | | | | | | | | | (https://github.com/ManageIQ/manageiq-pods/pull/88) | ||||
* | | | | | | Provisioning of nfs share and PV for logging ops | Erez Freiberger | 2017-02-11 | 3 | -0/+21 |
| | | | | | | |||||
* | | | | | | Merge pull request #3309 from jcantrill/bz_1420229_metrics_fail_on_upgrade | Scott Dodson | 2017-02-10 | 1 | -0/+14 |
|\ \ \ \ \ \ | | | | | | | | | | | | | | | Bz 1420229 metrics fail on upgrade | ||||
| * | | | | | | bug 1420229. Bounce metrics components to recognize changes on updates or ↵ | Jeff Cantrill | 2017-02-10 | 1 | -0/+14 |
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | upgrades | ||||
* | | | | | | | Merge pull request #3287 from giuseppe/scheduler-config-file | Scott Dodson | 2017-02-10 | 2 | -0/+6 |
|\ \ \ \ \ \ \ | | | | | | | | | | | | | | | | | latest: use same priorities and predicates used by the last version | ||||
| * | | | | | | | fixup! master: latest use same predicates as last version | Giuseppe Scrivano | 2017-02-08 | 1 | -1/+4 |
| | | | | | | | | |||||
| * | | | | | | | fixup! master: latest use same priorities as last version | Giuseppe Scrivano | 2017-02-08 | 1 | -1/+4 |
| | | | | | | | | |||||
| * | | | | | | | master: latest use same predicates as last version | Giuseppe Scrivano | 2017-02-08 | 1 | -1/+1 |
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Signed-off-by: Giuseppe Scrivano <gscrivan@redhat.com> | ||||
| * | | | | | | | master: latest use same priorities as last version | Giuseppe Scrivano | 2017-02-08 | 1 | -1/+1 |
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Signed-off-by: Giuseppe Scrivano <gscrivan@redhat.com> | ||||
* | | | | | | | | Merge pull request #3337 from jcantrill/fix_defaults_os_logging | Scott Dodson | 2017-02-10 | 1 | -6/+6 |
|\ \ \ \ \ \ \ \ | | | | | | | | | | | | | | | | | | | fix openshift_logging where defaults filter needs quoting | ||||
| * | | | | | | | | fix openshift_logging where defaults filter needs quoting | Jeff Cantrill | 2017-02-10 | 1 | -6/+6 |
| | |/ / / / / / | |/| | | | | | | |||||
* | | | | | | | | Merge pull request #3305 from giuseppe/conntrack-tools | Scott Dodson | 2017-02-10 | 1 | -0/+6 |
|\ \ \ \ \ \ \ \ | |/ / / / / / / |/| | | | | | | | node: ensure conntrack-tools is installed |