Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Update for modules which import json.json-imports-fallback | Toshio Kuratomi | 2016-01-11 | 2 | -10/+0 |
| | | | | | | | Some do not use the json module directly so don't need import json. Some needed to fallback to simplejson with no traceback if neither was installed Fixes #1298 | ||||
* | Add no_log=True to consul modules' API tokens | Joel Thompson | 2015-12-17 | 3 | -4/+4 |
| | | | | API tokens should be considered sensitive and not logged. | ||||
* | Correct 'object not iterable' TypeError | twmartin | 2015-12-10 | 1 | -2/+1 |
| | |||||
* | Fix documentation, the correct parameter is "name" | Jimmy Tang | 2015-11-06 | 1 | -1/+1 |
| | |||||
* | added version_added and fixed some doc parsing issues | Brian Coca | 2015-10-14 | 1 | -15/+10 |
| | |||||
* | Merge pull request #837 from jemmyw/consul-http-checks | Brian Coca | 2015-10-14 | 1 | -16/+59 |
|\ | | | | | Add consul http checks to consul.py | ||||
| * | Add consul http checks to consul.py | Jeremy Wells | 2015-10-12 | 1 | -16/+59 |
| | | | | | | | | | | Consul module already supports ttl and script checks. This commit adds http checks. | ||||
* | | fixed option in examples | Brian Coca | 2015-10-12 | 1 | -4/+4 |
| | | |||||
* | | znode requires a minimum of python2.6 | Matt Martz | 2015-10-01 | 1 | -0/+1 |
| | | |||||
* | | Make the znode module a valid ansible module | Toshio Kuratomi | 2015-09-30 | 1 | -0/+0 |
| | | |||||
* | | bugfix: uncall an uncallable dict | Konstantin Manna | 2015-09-30 | 1 | -1/+1 |
| | | |||||
* | | Removing token obfuscation | Chris Hoffman | 2015-08-18 | 1 | -5/+2 |
| | | |||||
* | | Adding support for service ACLs in consul_acl module | Chris Hoffman | 2015-08-16 | 1 | -43/+66 |
|/ | |||||
* | fixes to prevent doc brekage | Brian Coca | 2015-08-13 | 1 | -1/+0 |
| | |||||
* | moved znode to clustering added version_added | Brian Coca | 2015-08-10 | 1 | -0/+228 |
| | |||||
* | Clean up unneeded urllib2 imports | Toshio Kuratomi | 2015-07-20 | 4 | -9/+9 |
| | |||||
* | minor doc fixes | Brian Coca | 2015-07-17 | 2 | -26/+25 |
| | |||||
* | Add missing __init__.py file | Matt Martz | 2015-06-30 | 1 | -0/+0 |
| | |||||
* | Changes to author formatting, remove emails | Greg DeKoenigsberg | 2015-06-16 | 4 | -4/+4 |
| | |||||
* | corrected typo in URL for consul.io | mlamatr | 2015-06-16 | 1 | -1/+1 |
| | |||||
* | fixed version on consul modules | Brian Coca | 2015-05-28 | 4 | -4/+4 |
| | |||||
* | fix doc parsing by correctly quoting author | Brian Coca | 2015-05-14 | 4 | -4/+4 |
| | |||||
* | Adding author's github id | Greg DeKoenigsberg | 2015-05-13 | 1 | -1/+1 |
| | |||||
* | Adding author's github id | Greg DeKoenigsberg | 2015-05-13 | 1 | -1/+1 |
| | |||||
* | Adding author's github id | Greg DeKoenigsberg | 2015-05-13 | 1 | -1/+1 |
| | |||||
* | Adding author's github id | Greg DeKoenigsberg | 2015-05-13 | 1 | -1/+1 |
| | |||||
* | Add python >= 2.6 to documented deps | Toshio Kuratomi | 2015-05-12 | 4 | -0/+4 |
| | |||||
* | Give consul modules a .py extension | Matt Martz | 2015-05-11 | 4 | -0/+0 |
| | |||||
* | use module.fail_json to report import errors. document valid duration units | Steve Gargan | 2015-04-27 | 4 | -32/+78 |
| | |||||
* | documentation tweaks to fix missing arguments and specification of defaults | Steve Gargan | 2015-04-26 | 4 | -42/+138 |
| | |||||
* | Properly report exception causes particularly connection exceptions ↵ | Steve Gargan | 2015-03-16 | 4 | -20/+25 |
| | | | | contacting the consul agent | ||||
* | require a valid duration suffix for interval and ttl values | Steve Gargan | 2015-03-03 | 1 | -11/+12 |
| | |||||
* | fix logic that tests for change in an existing registered service | Steve Gargan | 2015-03-03 | 1 | -1/+1 |
| | |||||
* | remove debug imports from acl module | Steve Gargan | 2015-02-28 | 1 | -3/+0 |
| | |||||
* | Initial commit of Ansible support for the Consul clustering framework ↵ | Steve Gargan | 2015-01-24 | 4 | -0/+1212 |
(http://consul.io). Submission includes support for - creating and registering services and checks - reading, writing and lookup for values in consul's kv store - creating and manipulating sessions for distributed locking on values in the kv - creating and manipulating ACLs for restricting access to the kv store - inventory support that reads the Consul catalog and group nodes according to - datacenters - exposed services - service availability - arbitrary groupings from the kv store This submission makes extensive use of the python-consul library and this is required as a dependency and can be installed from pip. The tests were written to target a vagrant cluster which can be setup by following the instructions here http://github.com/sgargan/consul-vagrant |