Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Adding ability to yedit json files. | Kenny Woodson | 2018-02-13 | 1 | -7/+19 |
| | |||||
* | Merge pull request #6919 from mfojtik/symlink-kubectl-to-oc | OpenShift Merge Robot | 2018-01-30 | 1 | -1/+1 |
|\ | | | | | | | | | | | | | | | | | Automatic merge from submit-queue. Symlink kubectl to oc instead of openshift Fixes: https://bugzilla.redhat.com/show_bug.cgi?id=1538933 @sdodson @juanvallejo FYI | ||||
| * | Symlink kubectl to oc instead of openshift | Michal Fojtik | 2018-01-29 | 1 | -1/+1 |
| | | |||||
* | | docker_creds: decode docker_config for py3 only if its a string | Vadim Rutkovsky | 2018-01-30 | 1 | -1/+3 |
| | | |||||
* | | Create swapoff module | Michael Gugino | 2018-01-24 | 1 | -0/+137 |
| | | | | | | | | | | Create custome ansible module 'swapoff' to idempotently disable swap in /etc/fstab and also run swapoff. | ||||
* | | Merge pull request #6682 from giuseppe/fix-registries | Michael Gugino | 2018-01-23 | 1 | -2/+2 |
|\ \ | |/ |/| | CRI-O, Docker: Use images from the CentOS and Fedora registry | ||||
| * | docker_creds: fix python3 exception | Giuseppe Scrivano | 2018-01-10 | 1 | -1/+1 |
| | | | | | | | | | | | | | | | | Fixes: Object of type 'bytes' is not JSON serializable Signed-off-by: Giuseppe Scrivano <gscrivan@redhat.com> | ||||
| * | docker_creds: fix python3 exception | Giuseppe Scrivano | 2018-01-10 | 1 | -1/+1 |
| | | | | | | | | | | | | | | | | Solves this exception with python3: TypeError: a bytes-like object is required, not 'str Signed-off-by: Giuseppe Scrivano <gscrivan@redhat.com> | ||||
* | | Move more plugins to lib_utils | Michael Gugino | 2018-01-10 | 3 | -0/+1318 |
|/ | | | | | | | This commit continues moving plugins into lib_utils. This commit does not move any plugins for add-on roles such as logging and metrics. | ||||
* | Relocate filter plugins to lib_utils | Michael Gugino | 2017-12-18 | 4 | -0/+560 |
| | | | | | | | | | | | | | | This commit relocates filter_plugings to lib_utils, changes the namespacing to prevent unintended use of older versions that may be present in filter_plugins/ directory on existing installs. Add lib_utils to meta depends for roles Also consolidate some plugins into lib_utils from various other areas. Update rpm spec, obsolete plugin rpms. | ||||
* | Copying upstream fix for ansible 2.4 ec2_group module. | Kenny Woodson | 2017-12-11 | 1 | -0/+903 |
| | |||||
* | Alternative method to create docker registry auth creds | Michael Gugino | 2017-11-14 | 1 | -0/+207 |
| | | | | | | | | | | | | | | | Currently, the command 'docker login' is run when using oreg with authentication. On some hosts, such as hosts configured to use system containers, the docker service is not running. 'docker login' will fail without the docker service running. This commit adds a module to idempotently add credentials to the registry credentials file without the use of 'docker login' Fixes: https://bugzilla.redhat.com/show_bug.cgi?id=1511374 | ||||
* | Returning actual results of yedit query. Empty list was returning empty dict. | Kenny Woodson | 2017-09-20 | 1 | -1/+1 |
| | |||||
* | add retries to repoquery module | Luke Meyer | 2017-09-13 | 2 | -6/+13 |
| | |||||
* | First attempt at provisioning. | Kenny Woodson | 2017-08-21 | 2 | -0/+486 |
| | |||||
* | Fix python3 error in repoquery | Jeff Peeler | 2017-05-13 | 1 | -1/+1 |
| | | | | | | | Explicitly convert from bytes to string so that splitting the string is successful. This change works with python 2 as well. Closes #4182 | ||||
* | Merge pull request #4065 from ingvagabund/introduce-get-rpm-version-role | Jan Chaloupka | 2017-05-12 | 2 | -2/+29 |
|\ | | | | | Introduce excluder-free rpm version detection role | ||||
| * | Extend repoquery command (of lib_utils role) to ignore excluders | Jan Chaloupka | 2017-05-11 | 2 | -2/+29 |
| | | |||||
* | | Fix for yedit custom separators | Matt Woodson | 2017-05-10 | 1 | -1/+1 |
|/ | |||||
* | Fixed a bug in oc_volume. | Kenny Woodson | 2017-03-28 | 1 | -21/+38 |
| | |||||
* | Adding a few more test cases. Fixed a bug when key was empty. Safeguard ↵ | Kenny Woodson | 2017-03-28 | 1 | -9/+22 |
| | | | | against yedit module being passed an empty key | ||||
* | Added the ability to do multiple edits | Kenny Woodson | 2017-03-28 | 1 | -55/+106 |
| | |||||
* | raise exceptions when walking through object path | Joel Diaz | 2017-02-28 | 1 | -2/+9 |
| | | | | | | | | | | | | | | | | if we're given path a.b.c and the existing object is: a: b: - item1 raise an exception due to unexpected objects found while traversing the path (ie. b is a list, not a dict) also, add_entry assumes new dicts for each sub element when creating elements besides the final assignment value. doing something like a.b.c[0] = 12 where 'c' doesn't exist raises an exception add test cases to cover: access path that differs from existing object create new objects with an embedded list in the path create new object with a list at the end (define the end list in the passed in 'value' to avoid this exception) | ||||
* | fix up ruamel.yaml/pyyaml no-member lint errors | Jason DeTiberus | 2017-02-22 | 2 | -38/+42 |
| | |||||
* | Removed unrequired no-members from yedit and generated code | Steve Milner | 2017-02-22 | 1 | -5/+20 |
| | |||||
* | Fix tests on Python 3 | Rodolfo Carvalho | 2017-02-19 | 1 | -1/+1 |
| | | | | | | Unlike in Python 2: - `range` doesn't return a list. - `dict.keys` doesn't return a list. | ||||
* | Pleasing the linting gods. | Kenny Woodson | 2017-02-16 | 2 | -7/+13 |
| | |||||
* | Fixed tests for pyyaml vs ruamel. Added import logic. Fixed safe load. | Kenny Woodson | 2017-02-16 | 1 | -2/+2 |
| | |||||
* | Adding fallback support for pyyaml. | Kenny Woodson | 2017-02-16 | 2 | -17/+44 |
| | |||||
* | Added oc_serviceaccount_secret to lib_openshift. | Thomas Wiest | 2017-02-06 | 1 | -8/+15 |
| | |||||
* | Added repoquery to lib_utils. | Thomas Wiest | 2017-01-31 | 2 | -8/+618 |
| | |||||
* | Generate the artifacts from fragments. | Tim Bielawa | 2017-01-24 | 1 | -0/+16 |
| | |||||
* | Updated the generate.py scripts for tox and virtualenv. | Kenny Woodson | 2017-01-18 | 1 | -0/+6 |
| | |||||
* | Adding oc_edit module to lib_openshift. | Kenny Woodson | 2017-01-17 | 1 | -0/+4 |
| | |||||
* | lib_openshift modules. This is the first one. oc_route. | Kenny Woodson | 2017-01-13 | 1 | -55/+53 |
| | |||||
* | Adding ability to systematically modify yaml from ansible. | Kenny Woodson | 2017-01-11 | 1 | -0/+766 |