Commit Graph

2769 Commits (64ded1bb5eb86838184ab39bbfd71f60c9ba9b20)

Author SHA1 Message Date
Qi Luo 93e502f019 Fix getting actual_stdin_open 8 years ago
Graham Goldstein 4f8f0cf66b Change documented options for os_networks_facts (#3970)
* Change documented options for os_networks_facts

os_network_facts currently lists 'network' as an available option, taking the Name or ID. In Ansible 2.0.2 to 2.2.0, this is not valid. Options 'name' and 'id' should be used instead.

* Update os_networks_facts.py

* Update os_networks_facts.py

Set version_added to the only accepted value

* Update os_networks_facts.py

Removed inappropriate 'ID' parameter
8 years ago
Ryan Brown 47e22248c4 Merge pull request #3091 from jmunhoz/s3-ceph
Add Ceph RGW S3 compatibility
8 years ago
Chris Houseknecht 75d167e34f Merge pull request #3994 from chouseknecht/fix_ulimit
Fix ulimit comparison
8 years ago
Javier M. Mellid a88d6d9a53 Add s3_url requirement in doc when rgw support is enabled in s3.py
Signed-off-by: Javier M. Mellid <jmunhoz@igalia.com>
8 years ago
Javier M. Mellid a52ff221f7 Add proper version_added for rgw option in s3.py
Signed-off-by: Javier M. Mellid <jmunhoz@igalia.com>
8 years ago
Javier M. Mellid b1724344d5 Add Ceph RGW S3 compatibility
Ceph Object Gateway (Ceph RGW) is an object storage interface built on top of
librados to provide applications with a RESTful gateway to Ceph Storage
Clusters:

http://docs.ceph.com/docs/master/radosgw/

This patch adds the required bits to use the RGW S3 RESTful API properly.

Signed-off-by: Javier M. Mellid <jmunhoz@igalia.com>
8 years ago
chouseknecht 7f97cf4d04
Fix compose_version error. Check has compose before checking version. 8 years ago
chouseknecht 34305ded28 Fix index 8 years ago
chouseknecht 5f9f1642bc
Fix ulimit comparison 8 years ago
Mario David ae5ccf29ed add project to os_router (#3869)
* add project to os_router

* version_added fix

* correct place of version_added

* remove extraneous else

* * add shade version dependency check
* option project only on router creation

* * fix shade minimal version
* remove pop of option project

* * fix square brackets
* delete router by router_id
8 years ago
Adam Butler 1c41b6fdb2 Fixes incorrect key name protocols -> protocol (#3963) 8 years ago
Hagen Kuehn a5fdd8c128 fixed unknown type <type 'list'> error (#3959) 8 years ago
Chris Houseknecht 0802569af9 Merge pull request #3894 from stefanha/docker_image-load_image-streaming
Stream image data in load_image() to avoid out-of-memory
8 years ago
Chris Houseknecht 0098dc322f Merge pull request #3535 from picpicpic/devel
fixes dns type in docker module
8 years ago
chouseknecht d988187860
Remove dns from container create parameters. 8 years ago
chouseknecht 0884a942bf Fix #3945 docker_container detach not waiting on container to execute. 8 years ago
Adrian Likins 97ac3f2cc8 Merge pull request #3701 from gillesgagniard/gce-subnetwork-dev
GCE : Add support for subnet networks
8 years ago
Toshio Kuratomi 1d0f408897 Finish python3 syntax compilation fixing for core repo 8 years ago
chouseknecht af8eabe06f Fix #3941 8 years ago
Stefan Hajnoczi 8254e2b547 docker_service: make PyYAML requirement explicit
The "Developing Modules" documentation states:

  Include a minimum of dependencies if possible. If there are
  dependencies, document them at the top of the module file, and have
  the module raise JSON error messages when the import fails.

When docker_service runs on a remote host without PyYAML it crashes with
ImportError.

This patch raises a JSON error message when import fails, but only if
the PyYAML module is actually used.  It's only needed when the
"definition" parameter is given.

Signed-off-by: Stefan Hajnoczi <stefanha@gmail.com>
8 years ago
chouseknecht b9b727f435 Fix #16211 - only stop/kill running containers 8 years ago
Chris Houseknecht 964d9b3a6d Fix #3906 - Enforce required minimum compose version. (#3925)
* Fix #3906 - Require minimum compose version.

* Fix typo in message text.
8 years ago
Bradley Phipps 4a8930f886 added missing colons to documentation (#3913) 8 years ago
Stefan Hajnoczi 47cc422b8a Stream image data in load_image() to avoid out-of-memory
Reading the entire tar file into memory can result in out-of-memory
conditions such as this traceback:

Traceback (most recent call last):
  File "/tmp/ansible_YELTSu/ansible_module_docker_image.py", line 486, in load_image
    self.client.load_image(image_data)
  File "/usr/local/lib/python2.7/dist-packages/docker/api/image.py", line 147, in load_image
    res = self._post(self._url("/images/load"), data=data)
  ...
  File "/usr/lib/python2.7/httplib.py", line 997, in endheaders
    self._send_output(message_body)
  File "/usr/lib/python2.7/httplib.py", line 848, in _send_output
    msg += message_body
MemoryError

Luckily docker-py's load_image(), which calls requests post(), accepts a
file-like object instead of a string.  Pass in the file object to avoid
reading the full file into memory.  This allows larger tar files to load
succesfully.

Signed-off-by: Stefan Hajnoczi <stefanha@gmail.com>
8 years ago
Vince v. Oosten fd418c19c2 move environment variable gathering to end of __init__() (#3890)
* This moves the lines in the code that parse the `env` and `env_file` options for docker to the end of the `__init__()` function.
This is needed because the `_check_capabilites` function needs both a working `self.client` and a proper `self.docker_py_versioninfo`.
`_check_capabilities` is used by `ensure_capabilities` which is, in turn, used by `get_environment`

This means that before this commit, the environment variables could not be loaded because both `self.client` and `self.docker_py_versioninfo` were not set at that time.

This commit fixes that by putting the environment variable parsing after those two.

* This moves the lines in the code that parse the `env` and `env_file` options for docker to the end of the `__init__()` function.
This is needed because the `_check_capabilites` function needs both a working `self.client` and a proper `self.docker_py_versioninfo`.
`_check_capabilities` is used by `ensure_capabilities` which is, in turn, used by `get_environment`

This means that before this commit, the environment variables could not be loaded because both `self.client` and `self.docker_py_versioninfo` were not set at that time.

This commit fixes that by putting the environment variable parsing after those two.
8 years ago
Matt Davis a8e5f27b2c Iam trust policy (#3885)
* added support for trust policies

* added version_added to new params in DOC string

* update version_added on new iam args to 2.2
8 years ago
Rodríguez, Jorge 7d33c6ccdf Do not forcibly push when building, either. 8 years ago
Rodríguez, Jorge a0be466f90 Don't forcibly push loaded images to registry. Fixes #3763 8 years ago
mansunkuo 91e9223a76 Add an example to delete Route53 alias record set (#3834) 8 years ago
chouseknecht 68151790c2
Fix issue #3866 8 years ago
nitzmahone 2bd8d78a8b correct gs_storage docs to match reality 8 years ago
Ryan Brown 878cdb10f9 Merge pull request #3847 from washingtoneg/postgres9.5-rds-param-group-support
Add support for PostgreSQL 9.5 in rds_param_group (fix for #3846)
8 years ago
Ryan Brown f54e39450c Merge pull request #2555 from jsternberg/paginate-iam-results
Paginate the results from `boto.iam`
8 years ago
Ryan S. Brown 1b9e28cc68 IAM group modules need `module` passed
The IAM group modules were not receiving the `module` object, but they
use `module.fail_json()` in their exception handlers. This patch passes
through the module object so the real errors from boto are exposed,
rather than errors about "NoneType has no method `fail_json`".
8 years ago
Michael Pappas d26bb2eb41 Prevent ec2group from deleting sgs during check_mode runs 8 years ago
codemeup @ Work a51a896d20 Fixing Rackspace compile time errors irt exception handling for Python 3 (#3849) 8 years ago
codemeup @ Work 18455b2e72 Fixing open stack compile time errors irt exception handling for Python 3 (#3848) 8 years ago
codemeup @ Work d0a955452a Fixing gce compile time errors irt exception handling for Python 3 (#3845) 8 years ago
chouseknecht 1a3e277f95
Fix 3857 name regex 8 years ago
chouseknecht d43a91c627 Fix #147 automatically expose published ports 8 years ago
chouseknecht 67432709a4
Remove unused method in ContainerManager 8 years ago
Chris Houseknecht 0a42ada42a Merge pull request #3844 from Hypermanzer/docker-python-3-compat-bug
Fixing Docker compile time errors irt exception handling for Python 3
8 years ago
Chris Houseknecht 93c8d923c4 Merge pull request #3837 from chouseknecht/devel
Fix #3822 stop container
8 years ago
chouseknecht 09fe0416b6 Fix #3822 stop container 8 years ago
Jonathan A. Sternberg 969471f2ab Paginate the results from `boto.iam`
The default pagination is every 100 items with a maximum of 1000 from
Amazon. This properly uses the marker returned by Amazon to concatenate
the various pages from the results.

This fixes #2440.
8 years ago
Elena Washington e1d7d78fcc Add support for PostgreSQL 9.5 in rds_param_group (fix for #3846) 8 years ago
codemeup @ Work 27ad29d376 Fixing compile time error exception handling for python 3. (#3843) 8 years ago
Mike Mars 1c63fb754d Fixing Docker compile time errors irt exception handling for Python 3 8 years ago
codemeup @ Work 7314cc3867 Fixing error exception handling for python3. Does not need to be compa… (#3840)
* Fixing error exception handling for python. Does not need to be compatible with Python2.4 b/c boto is Python 2.6 and above.

* Fixing error exception handling for python. Does not need to be compatible with Python2.4 b/c boto is Python 2.6 and above.

* Fixing compile time errors IRT error exception handling for Python 3.5.
This does not need to be compatible with Python2.4 b/c Boto is Python 2.6 and above.
8 years ago
codemeup @ Work 5b1ab46265 Fixing error exception handling for python. Does not need to be compatible with Python2.4 b/c boto is Python 2.6 and above. (#3839) 8 years ago
chouseknecht a676d9e126 Remove registery option per #3824. 8 years ago
chouseknecht 4ded9313b7 Fix upate typo and expected volume compare. 8 years ago
Chris Houseknecht b5e93b51cf Merge pull request #3828 from chouseknecht/winggundamth-devel
Fix volume to support not binding volumes to host
8 years ago
chouseknecht e2d8d9d09a Fixed binds and volumes. Now recognizes bound vs unbound as well as named volumes. 8 years ago
chouseknecht de15a631ad Fix missing ansible_facts. 8 years ago
Jirayut 'Dear' Nimsaeng 1212e2ed25 Fix volume to support not binding volumes to host 8 years ago
Anton Simernia d30040f9dc Update gc_storage.py (#3802) 8 years ago
Chris Houseknecht bf6bf9e68f Merge pull request #3796 from chouseknecht/fix_3766
Fix 3766
8 years ago
chouseknecht e8db7fd8cc
Remove debug/register from examples. 8 years ago
chouseknecht 0601df8c70
Fix network comparison. Fix handling of links. Updated doc strings. Added more examples. 8 years ago
David Shrewsbury d952087557 Merge pull request #3732 from GheRivero/devel
Make add ip_floating_ip idempotent
8 years ago
chouseknecht d9c751be16
Set version added to 2.2 so that tests pass 8 years ago
chouseknecht 78019e4388
For new options move vesion_added to 2.1.1 8 years ago
chouseknecht 633e11be1e
Fixed bug in _get_network_id 8 years ago
chouseknecht 6d9de1b5a1 Fix doc strings. 8 years ago
chouseknecht 3292121e6d
Fixed issues post testing. 8 years ago
chouseknecht 8cd028bd8e First pass at implementing networks parameter. Also added purge_networks option to remove container from networks not included in networks param. 8 years ago
chouseknecht 23816c9c04 Fix for 3768 - adding support for env_file 8 years ago
Chris Houseknecht 4d8f7d161b Merge pull request #3776 from danschmidt5189/fix-docker_container-typo
Fix "ansbile_facts" typo in docker_container module
8 years ago
chouseknecht cba5b37c9f
Check self.parameters.env exists. 8 years ago
chouseknecht c419d351c5 Fix for issue #3775 - env config comparison 8 years ago
chouseknecht 651133469c
Update restart_policy doc strings. 8 years ago
chouseknecht 6aa4feb459
Fix restart_poicy 8 years ago
Chris Houseknecht 9a1387f255 Merge pull request #3784 from chouseknecht/fix_3783
Fix for #3783 - command returns not found or does not exist.
8 years ago
chouseknecht af0aa8247d
Fix for #3783 - command returns not found or does not exist. 8 years ago
pic fee0055f9f fix #3528 : dns type 8 years ago
Dan Schmidt 31d21efbc5 Fix "ansbile_facts" typo in docker_container module 8 years ago
Chris Houseknecht 90e8a36d4c Merge pull request #3347 from dougluce/fix-s3-region-error
Fix S3 unavailable region error
8 years ago
David Fischer d8ad80ae0f Add MariaDB to valid RDS engines (#3337)
* Add MariaDB to valid RDS engines

* Update RDS module documentation
8 years ago
chouseknecht 97f16b52cf
Fix missing key error when updating existing virtual network. 8 years ago
Chris Houseknecht ddb0b53c66 Merge pull request #3745 from chouseknecht/fix_3740
Fix for issue 3740. Make docker_service more resilient when targeting…
8 years ago
Roberto Bampi 423209d187 Add an example for SRV record in route53 (#3749) 8 years ago
chouseknecht 904d947172 Fix for issue 3740. Make docker_service more resilient when targeting older API versions. 8 years ago
Brian Coca d8b67bdeb0 deprecated docker (#3710)
* deprecated docker

* updated formatting
8 years ago
Alvaro Aleman 7f7b9054fd Fix can_update test in os_subnet (#3664) 8 years ago
René Moser 215da19511 Add no_gateway_ip option to os_subnet module (#3736)
no_gateway_ip option can provide subnet that is not having a gateway.
fixes #1880
8 years ago
Doug Luce ec0f2113e0 Fix S3 unavailable region error
This is to address this error:

  fatal: [site]: FAILED! => {"changed": false, "failed": true, "msg": "Failed to connect to S3: Region  does not seem to be available for awsmodule boto.s3. If the region definitely exists, you may need to upgrade boto or extend with endpoints_path"}

Commit 0dd58e9 changed the logic so an exception is thrown (by
`connect_to_aws`) before the `s3 is None` check is performed. This
changes the `None` check to a catch so the old logic can compensate.
8 years ago
Ghe Rivero c5430d0f92 Make add ip_floating_ip idempotent
Closes issue #1858
8 years ago
Ryan Brown aa995806b9 Merge pull request #3320 from hyperized/patch-1
Added restart functionality to ec2.py
8 years ago
Michael Scherer b78d708678 Port vsphere_guest to py3/py2.4 syntax (#3721) 8 years ago
Kenny Woodson 5474da09bc Unindenting the delete to user (#3147) 8 years ago
Ryan Brown 58bb2fc4f6 Allow users to pick AWS Aurora as an RDS engine (#3414)
Per the [RDS docs](http://docs.aws.amazon.com/AmazonRDS/latest/APIReference/API_CreateDBInstance.html),
add `aurora` as a valid DB engine.
8 years ago
Nathan Brown 97f6daa854 Do not expect the elb to have policies or instances. Fixes #3593 (#3595) 8 years ago
kwerey 1bfc33728b Add option to make RDS param groups for the MySQL 5.7 engine family. (#3695) 8 years ago
Gilles Gagniard 8231a1afc8 better error message if libcloud is not recent enough to use gce subnetworks 8 years ago
Lloyd Hazlett 3cf40d9596 Add path type to argument_spec where applicable (#3040) 8 years ago
Matt Martz 1d87213de1 2 Module fixes (#3611)
* Fix syntax error in azure_rm_virtualmachine.py

* Allow rhn_register to fail gracefully when rhn-client-tools is not installed
8 years ago
Toshio Kuratomi 521370459c Py3 exclude list (#3698)
* Fix a few modules to pass syntax checks under python3

* Move from a whitelist of modules to check for python3 compat to a blacklist
8 years ago
Cheuk Lam d3097bf580 Added support for accepting extra config options in vm reconfiguration. (#3327) 8 years ago
chouseknecht a8bf8260aa
Fixed the URL in description. It's now valid Yaml. 8 years ago
chouseknecht 3d43ccae1e
Remove the U(). 8 years ago
Gilles Gagniard c859a9d339 fix documentation to reflect subnetwork option is new in ansible 2.2 8 years ago
Gilles Gagniard 2a008998fd Initial support for specifying in which subnetwork a gce instance should be created. This is required for non-legacy networks. 8 years ago
chouseknecht fe45ec9d9e
Uppercase 8 years ago
chouseknecht 10ee35ff26
Make the new bits a NOTE 8 years ago
chouseknecht 1825a73c40
Where to get the full docker picture. 8 years ago
Kaz Cheng f87f0ec277 Allow create_iam_role to return an additional value of role_result and (#2418)
instance_profile_result, in addition to the existing role list and change value
8 years ago
Shubham 64b104ac37 remove module argument, fix #3682 (#3683) 8 years ago
Matt Martz 9b6a7eb4f9 Revert "Fix doc strings spacing."
This reverts commit 127d518011.
8 years ago
chouseknecht 127d518011
Fix doc strings spacing. 8 years ago
chouseknecht a81d0a6809
Fix doc strings. Missing requirements and doc fragment reference. 8 years ago
Toshio Kuratomi 298fd0ae56 Docs fixes 8 years ago
chouseknecht d63bc38481
Fail gracefully when build path is not found. 8 years ago
chouseknecht 3a5dd00076
Fixed files/project_files naming. Correct name is files. 8 years ago
chouseknecht 22853efeed
Flip version added back to 2.2 to make tests pass. 8 years ago
chouseknecht 834d2fb9fe
Moving version added to 2.1 8 years ago
chouseknecht 282b2d45df
Added actions to RETURN docs. Show actions when debug or check mode. 8 years ago
chouseknecht c2d2189274
Removed use of --diff. Replaced 'diff' in output with 'actions'. Only show 'actions' in output if debug true. 8 years ago
chouseknecht f69b352341 Removed fail method. Combined recreate and force_recreate params. 8 years ago
chouseknecht d9b026dcef Adding docker_service 8 years ago
Chris Houseknecht f08e5608c7 Fixed parameters passing in container_create method. (#3618) 8 years ago
Brian Coca c3ee04b842 switched to return facts 9 years ago
Brian Coca e7d49f3308 fixed documentation and arg issues 9 years ago
hyperized 507d083d08 Added restart functionality to ec2.py 9 years ago
Toshio Kuratomi 9db1233521 Fix documentation 9 years ago
John R Barker bb9572ca86 ansible-validate-modules part 4: Enable check on ansible-modules-core (#3526)
* Call ansible-validate-modules

* Correct quotes + add newline
9 years ago
cspollar df0adafe66 Add missing periods to description items.
Current theme used by docs.ansible.com displays description items on one line. Adding periods helps readability.
9 years ago
chouseknecht a9ab2e1142
Add doc string for container_limits. Fixed push fail message. Use path type. 9 years ago
Brian Coca 3381e8f76e clarified docs on overwrite 9 years ago
Chris Houseknecht e78ee3b128 Adding new module azure_rm_networkinterace_facts (#3460)
* Adding new Azure module.

* Updating based on PR comments
9 years ago
Chris Houseknecht f98fea488f Adding new module azure_rm_publicipaddress_facts (#3463)
* Adding new Azure module.

* Updating based on PR comments
9 years ago
Chris Houseknecht ee298f3eff Adding module azure_rm_virtualnetwork_facts (#3479) 9 years ago
Chris Houseknecht 317b4f3b02 Adding module azure_rm_storageaccount_facts (#3483) 9 years ago
Chris Houseknecht 19a7889c88 Adding module azure_rm_securitygroup_facts (#3485) 9 years ago
Chris Houseknecht 518b80200c Adding new module azure_rm_resourcegroup_facts (#3487) 9 years ago
Chris Houseknecht f580ab7f64 Adding module azure_rm_virtualmachineimage_facts (#3489) 9 years ago
Chris Houseknecht 35c589575d Adding docker_image_facts (#3493)
* Adding docker_image_facts

* Fix github credentials
9 years ago
Chris Houseknecht f6344b6dc7 Adding docker_container (#3495)
* Adding docker_container

* If state absent, stop the container before attempting to remove. Fixed status running check.

* If container absent, stop before removing. Fix container status check.
9 years ago
Toshio Kuratomi 22ce32dd93 Fix docs building 9 years ago
Toshio Kuratomi f3fef24e49 Some beginning python3 porting for modules which have unittests 9 years ago
Brian Coca 0e4304c6e2 fixed intersection 9 years ago
Ryan Brown f14953f479 Fix capitalization of AWS in ec2_lc module documentation 9 years ago
Brian Coca 9f3660893e rearranged options to be more declarative 9 years ago
Brian Coca b963b090bb fixed missign main 9 years ago
Brian Coca 9eb2b557cd several fixes:
- removed actions feature as this should be global and not per module
- removed default fields from return docs
- moved tags docs to shared fragments
- removed unused imports
9 years ago
Bill W 0f26d71715 Add more example on how to use module ec2_tags to list tags on an ins… (#3530)
* Add more example on how to use module ec2_tags to list tags on an instance

* Add more example on how to use module ec2_tags to list tags on an instance
9 years ago
deyvsh 522fb9b2cd Extend example to demonstrate usage of ephemeral disks. (#3550) 9 years ago
Chris Houseknecht aa4100524d Merge pull request #3488 from chouseknecht/azure_rm_virtualmachine
Adding module azure_rm_virtualmachine
9 years ago
Chris Houseknecht b68114f838 Merge pull request #3505 from chouseknecht/docker_image
Adding refactored docker_image module.
9 years ago