Commit graph

2073 commits

Author SHA1 Message Date
Rene Moser
db31914f58 cloudstack: use CS_HYPERVISORS from cloudstack utils 2016-02-02 19:10:22 +01:00
Matt Martz
d2e3909443 Fix DOCUMENTATION for ec2_vpc_dhcp_options.py and add missing RETURN to ec2_vol_facts.py 2016-02-02 10:00:51 -06:00
Brian Coca
9aac5784d3 Merge pull request #1565 from mjschultz/welex91
Ensure that port_path is split into at most 2 components.
2016-02-01 23:56:02 -05:00
Brian Coca
a2532862d8 Merge pull request #1330 from joelthompson/feature/ec2_vpc_dhcp_options
Add new ec2_vpc_dhcp_options module
2016-02-01 23:48:06 -05:00
Brian Coca
20caf29213 Merge pull request #1113 from shawnsi/vpc-route-table-continued
Additional check mode fixes for ec2_vpc_route_table module
2016-02-01 23:46:38 -05:00
Brian Coca
7e81c60c96 corrected version added 2016-02-01 23:49:05 -05:00
Brian Coca
76feff5b4d Merge pull request #1109 from wimnat/feature/ec2_vol_facts
New module - ec2_vol_facts
2016-02-01 23:43:27 -05:00
Joseph Callen
37d36a5533 Fixed documentation 2016-02-01 11:35:02 -05:00
Joseph Callen
2fc15c5d2b Resolves issue with vmware_vswitch module for v2.0
When this module was written back in May 2015 we were using 1.9.x. Being lazy I added to param the objects that the other functions would need. What I have noticed is in 2.0 exit_json is trying to jsonify those complex objects and failing.

Playbook
```yaml
   - name: Add a temporary vSwitch
      local_action:
        module: vmware_vswitch
        hostname: "{{ inventory_hostname }}"
        username: "{{ esxi_username }}"
        password: "{{ site_passwd }}"
        switch_name: temp_vswitch
        nic_name: "{{ vss_vmnic }}"
        mtu: 1500
```

Module Testing
```bash
TASK [Add a temporary vSwitch] *************************************************
task path: /opt/autodeploy/projects/emmet/tasks/deploy/esxi_network.yml:13
ESTABLISH LOCAL CONNECTION FOR USER: root
localhost EXEC ( umask 22 && mkdir -p "$( echo $HOME/.ansible/tmp/ansible-tmp-1454342817.37-180776062017566 )" && echo "$( echo $HOME/.ansible/tmp/ansible-tmp-1454342817.37-180776062017566 )" )
ESTABLISH LOCAL CONNECTION FOR USER: root
localhost EXEC ( umask 22 && mkdir -p "$( echo $HOME/.ansible/tmp/ansible-tmp-1454342817.41-201974997737598 )" && echo "$( echo $HOME/.ansible/tmp/ansible-tmp-1454342817.41-201974997737598 )" )
ESTABLISH LOCAL CONNECTION FOR USER: root
localhost EXEC ( umask 22 && mkdir -p "$( echo $HOME/.ansible/tmp/ansible-tmp-1454342817.44-148446986849801 )" && echo "$( echo $HOME/.ansible/tmp/ansible-tmp-1454342817.44-148446986849801 )" )
localhost PUT /tmp/tmpLLExSG TO /root/.ansible/tmp/ansible-tmp-1454342817.37-180776062017566/vmware_vswitch
localhost EXEC LANG=en_US.UTF-8 LC_ALL=en_US.UTF-8 LC_MESSAGES=en_US.UTF-8 /usr/bin/python /root/.ansible/tmp/ansible-tmp-1454342817.37-180776062017566/vmware_vswitch; rm -rf "/root/.ansible/tmp/ansible-tmp-1454342817.37-180776062017566/" > /dev/null 2>&1
localhost PUT /tmp/tmpyoAaHt TO /root/.ansible/tmp/ansible-tmp-1454342817.41-201974997737598/vmware_vswitch
localhost EXEC LANG=en_US.UTF-8 LC_ALL=en_US.UTF-8 LC_MESSAGES=en_US.UTF-8 /usr/bin/python /root/.ansible/tmp/ansible-tmp-1454342817.41-201974997737598/vmware_vswitch; rm -rf "/root/.ansible/tmp/ansible-tmp-1454342817.41-201974997737598/" > /dev/null 2>&1
localhost PUT /tmp/tmpPcmaMZ TO /root/.ansible/tmp/ansible-tmp-1454342817.44-148446986849801/vmware_vswitch
localhost EXEC LANG=en_US.UTF-8 LC_ALL=en_US.UTF-8 LC_MESSAGES=en_US.UTF-8 /usr/bin/python /root/.ansible/tmp/ansible-tmp-1454342817.44-148446986849801/vmware_vswitch; rm -rf "/root/.ansible/tmp/ansible-tmp-1454342817.44-148446986849801/" > /dev/null 2>&1
changed: [foundation-esxi-01 -> localhost] => {"changed": true, "invocation": {"module_args": {"hostname": "foundation-esxi-01", "mtu": 1500, "nic_name": "vmnic1", "number_of_ports": 128, "password": "VALUE_SPECIFIED_IN_NO_LOG_PARAMETER", "state": "present", "switch_name": "temp_vswitch", "username": "root"}, "module_name": "vmware_vswitch"}}
changed: [foundation-esxi-02 -> localhost] => {"changed": true, "invocation": {"module_args": {"hostname": "foundation-esxi-02", "mtu": 1500, "nic_name": "vmnic1", "number_of_ports": 128, "password": "VALUE_SPECIFIED_IN_NO_LOG_PARAMETER", "state": "present", "switch_name": "temp_vswitch", "username": "root"}, "module_name": "vmware_vswitch"}}
changed: [foundation-esxi-03 -> localhost] => {"changed": true, "invocation": {"module_args": {"hostname": "foundation-esxi-03", "mtu": 1500, "nic_name": "vmnic1", "number_of_ports": 128, "password": "VALUE_SPECIFIED_IN_NO_LOG_PARAMETER", "state": "present", "switch_name": "temp_vswitch", "username": "root"}, "module_name": "vmware_vswitch"}}

```

Documentation fix
2016-02-01 11:21:38 -05:00
Baptiste Mille-Mathias
a11220228c fix typo
conainerization => containerization
2016-01-31 20:05:45 +01:00
Toshio Kuratomi
36be779888 Remove duplicate documentation fields 2016-01-28 09:20:55 -08:00
Sumit Roy
acc51c2944 Ensure that port_path is split into at most 2 components.
cloudstack: cs_instance: fix do not require name to be set to avoid clashes

Require one of display_name or name. If both is given, name is used as identifier.

cloudstack: fix name is not case insensitive

cloudstack: cs_template: implement state=extracted

Update f5 validate_certs functionality to do the right thing on multiple python versions

This requires the implementation in the module_utils code here
https://github.com/ansible/ansible/pull/13667 to funciton

fixed domain_id to actually be supported

also added domain as an alias
alt fixes #1437

Simplify the code and remove use_unsafe_shell=True

While there is no security issue with this shell snippet, it
is better to not rely on shell and avoid use_unsafe_shell.

Fix for issue #1074. Now able to create volume without replica's.

Improved fix for #1074. Both None and '' transform to fqdn.

Fix for ansible-modules-extras issue #1080
2016-01-28 11:02:34 -06:00
Brian Coca
33213dbc24 Merge pull request #1508 from RajeevNambiar/devel
Update sts_assume_role.py for showing the correct example syntax role…
2016-01-26 00:00:49 -05:00
Brian Coca
65686221af Merge pull request #1488 from robbwagoner/ec2-elb-facts-with-instance-health
Include instance states (InService or OutOfService) as ELB facts
2016-01-25 23:54:29 -05:00
David Shrewsbury
2d7ebf0b1c Add new os_flavor_facts.py module
New module to retrieve facts about existing instance flavors.
By default, facts on all available flavors will be returned.
This can be narrowed by naming a flavor or specifying criteria
about flavor RAM or VCPUs.
2016-01-25 13:00:45 -05:00
Rob White
0d86bc8d6b Add missing doc fragments 2016-01-24 11:11:49 +11:00
Shawn Siefkas
ddcc15a60f Fixing check mode support for vpc route tables
Loop compatibility for dry run exception handling

Route table deletion dry run handler

Fixing regression in propagating_vgw_ids default value

Adjusting truthiness of changed attribute for route manipulation

Updating propagating_vgw_ids default in docstring
2016-01-22 11:32:24 -06:00
David Shrewsbury
4094154afa Add os_group.py OpenStack module
Allows an admin (or privileged user) to manage Keystone v3
groups.
2016-01-20 12:25:42 -05:00
David Shrewsbury
46b4622eba Fix exception output for os_keystone_domain.
The message attribute of a shade exception is not very helpful.
Converting to a full string will contain many more details.
2016-01-19 12:17:36 -05:00
David Shrewsbury
b1d6c33712 Add new os_keystone_role module.
This new module allows for creating and deleting Keystone
roles.
2016-01-19 11:58:19 -05:00
Brian Coca
e9450df878 Merge pull request #1486 from resmo/for-ansible
[2.0.1] cloudstack: fixes and improvements
2016-01-18 21:05:11 -05:00
David Shrewsbury
f798240f43 Update Keystone Domain module for latest shade 2016-01-18 14:35:08 -06:00
Monty Taylor
02e91f8897 Extract module for keystone domain management 2016-01-18 14:35:08 -06:00
Haneef Ali
b65bd39615 Ansible module for Keystone V3 API
Change-Id: I9db323cc9e5a42353cab5cf4be6e22449cef8542
2016-01-18 14:35:07 -06:00
RajeevNambiar
57a6a98cd9 Update sts_assume_role.py for showing the correct example syntax role_session_name instead of session_name
Update sts_assume_role.py for showing the correct example syntax role_session_name instead of session_name. session_name is not a valid property.
2016-01-16 09:13:18 -05:00
Chrrrles Paul
570869ef48 Merge pull request #1487 from chrrrles/vmware_doc_fragments
use doc fragments
2016-01-15 15:42:25 -06:00
Robb Wagoner
4be856a40c InService percent key as literal percent (i.e 50, not .5) 2016-01-12 10:46:21 -07:00
Robb Wagoner
3226ad4284 Include instance states (InService or OutOfService) as ELB facts 2016-01-12 10:07:09 -07:00
Charles Paul
0ba3d85522 use doc fragments 2016-01-12 11:03:44 -06:00
Brian Coca
2813675b6f Merge pull request #1469 from Constantin07/update_elb_ec2_facts
ec2_elb_facts - Print explicit error cause when no ELBs are found in AWS
2016-01-12 10:54:47 -05:00
Brian Coca
61bb39be71 Merge pull request #1466 from stepanstipl/fix-route53_facts_hosted_zone_id
Fix: route53_facts hosted_zone_id boto error
2016-01-12 10:54:17 -05:00
Brian Coca
3aa2d3744d Merge pull request #1482 from ansible/json-imports-fallback
Update for modules which import json.
2016-01-12 10:00:37 -05:00
Rene Moser
2984c13035 cloudstack: cs_portforward: fix missing return and remove unused arg 2016-01-12 13:32:39 +01:00
Brian Coca
91c4558545 Merge pull request #1363 from wimnat/feature/eni_facts_secondary_addresses
Add secondary addresses to facts
2016-01-11 19:06:01 -05:00
Brian Coca
aa95a81005 added version info on autodetection feature 2016-01-11 18:58:49 -05:00
Brian Coca
c0922d4d32 Merge pull request #1146 from frogu/proxmox_lxc_support
add lxc support, without dropping openvz
2016-01-11 18:54:08 -05:00
Toshio Kuratomi
7e56a66ef6 Really disable RETURN 2016-01-11 14:59:23 -08:00
Toshio Kuratomi
816bfd6990 Disable RETURNS because the approved module doesn't have a RETURNS that is buildable 2016-01-11 13:23:04 -08:00
Toshio Kuratomi
759e4f2f24 Merge pull request #952 from Java1Guy/ecs_service_module
cloud amazon ECS service modules
2016-01-11 13:11:19 -08:00
Toshio Kuratomi
d6af6f8477 Update for modules which import json.
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
2016-01-11 13:06:22 -08:00
Rene Moser
11fdb822a4 cloudstack: fixes and improvements
cs_instance: fix case insensitivity
cs_instance: remove duplicate code block
cs_securitygroup_rule: fix KeyError on older ACS
2016-01-11 19:06:36 +01:00
Constantin07
53e6e8c936 Print explicit error cause when no ELBs are found in AWS 2016-01-08 11:55:40 +00:00
Stepan Stipl
6bad06e827 Fix: route53_facts hosted_zone_id boto error
Boto is expecting parameter called "Id", not "HostedZoneId".
See
http://boto3.readthedocs.org/en/latest/reference/services/route53.html#Route53.Client.get_hosted_zone

Fixes ansible/ansible-modules-extras/#1465
2016-01-07 18:06:35 +00:00
Charles Paul
6f4aaecb6a adding no_log to password 2016-01-05 14:36:05 -06:00
Brian Coca
fa11718c0f fixed domain_id to actually be supported
also added domain as an alias
alt fixes #1437
2016-01-01 01:55:11 -05:00
Toshio Kuratomi
19e496c69c Merge pull request #1395 from resmo/feature/cs_template_extract
[stable-2.0] cloudstack: cs_template: implement state=extracted
2015-12-23 13:10:51 -08:00
Toshio Kuratomi
9bae6eafee Merge pull request #1411 from resmo/fix/stable-2.0/case_insensivity
[stable-2.0] cloudstack: fix name is not case insensitive
2015-12-23 13:09:52 -08:00
Toshio Kuratomi
8f6d518a5b Merge pull request #1410 from resmo/fix/stable-2.0/cs_instance
[stable-2.0] cloudstack: cs_instance: fix do not require name to be set to avoid c…
2015-12-23 13:08:32 -08:00
Brian Coca
6efa406b6f added examples to route53_zone
fixes #1061
2015-12-23 12:01:47 -05:00
Joel Thompson
736321001f Add new ec2_vpc_dhcp_options module
This module manages EC2 DHCP options for a given VPC. It allows you to
specify all the options which AWS allows you to set in a DHCP option
set.
2015-12-23 09:55:26 -05:00
Michael Scherer
2f3dc1352f Replace choices=BOOLEANS by type='bool', fix #1326 2015-12-21 23:39:20 +01:00
Rene Moser
06f6a5375e cloudstack: fix name is not case insensitive 2015-12-20 22:24:58 +01:00
Rene Moser
15b14f8109 cloudstack: cs_instance: fix do not require name to be set to avoid clashes
Require one of display_name or name. If both is given, name is used as identifier.
2015-12-20 22:18:30 +01:00
Rene Moser
56fb7abc65
cloudstack: cs_volume: simplify detach on state=absent 2015-12-20 00:33:23 +01:00
Rene Moser
182cbbd4f7 cloudstack: cs_template: implement state=extracted 2015-12-18 11:54:50 +01:00
Gauvain Pocentek
652676cf95 Add an __init__.py file in openstack/
The os_project module doesn't get installed if the __init__ file doesn't
exist in the repository.
2015-12-17 12:26:33 +01:00
Brian Coca
577b930df9 Merge pull request #1335 from resmo/fix/1321
[next]: cloudstack: fixes and improvements
2015-12-16 08:11:59 -05:00
Rene Moser
99385de340 cloudstack: fixes and improvements
cloudstack: fix python3 support and use type='bool'

cloudstack: cs_instance: update vm on state=restored
2015-12-16 11:09:18 +01:00
Rene Moser
480db37583 cloudstack: cs_volume fixes and improvments
cloudstack: cs_volume:  fix not usable in older cloudstack versions

affects CCP 4.3.0.2 , but not ACS / CCP 4.5.1
closes #1321

cloudstack: cs_volume: fix uable to create volumes with the same name on multiple zones

cloudstack: cs_volume: use type bool and fix python3 support
2015-12-16 08:45:39 +01:00
Rene Moser
a0a19e16ff cloudstack: cs_instance: fixes and improvements
- cs_instance: fix VM not updated with states given stopped, started, restarted
  A missing VM will be created though but an existing not updated. This fixes the lack of consistency.

- cs_instance: fix user data can not be cleared

- cs_instance: fix deleted VM not recovered on state=present
2015-12-15 08:49:43 +01:00
Brian Coca
5601c1338a Merge pull request #1288 from resmo/fix/cs_facts_docs
cloudstack: cs_facts: fix wrong description of returns cloudstack_pub…
2015-12-14 23:18:39 -05:00
Brian Coca
cbe0211f3d Merge pull request #1294 from resmo/feature/cs_instance_restore
cloudstack: cs_instance: implement state=restored
2015-12-14 23:17:51 -05:00
Brian Coca
0e9c9e759a Merge pull request #1341 from s1lv3r40/doc_fix
Doc fix on route53_health_check.py and ec2_vpc_route_table.py.
2015-12-14 21:56:47 -05:00
Matthew Jones
c157dbe55a Fix up vsphere_copy after open_url change
* Remove leading module parameter on open_url call as it's no longer used
  by module_utils.urls.open_url
* Force basic auth otherwise vsphere will just return a 401
2015-12-13 01:13:47 -05:00
Rob
1b0250125a Add secondary addresses to facts 2015-12-12 11:33:10 +00:00
Chrrrles Paul
0ee578e938 Changing docs to reflect vm_name as the default vm_id_type 2015-12-11 09:57:10 -05:00
Brian Coca
fabafe9aa8 Merge pull request #1325 from wimnat/feature/issue-1323
Added missing else statement that caused existing rules to be discarded
2015-12-11 09:42:46 -05:00
Charles Paul
7ded482e6c pep8 whitespace 2015-12-10 15:42:49 -05:00
Charles Paul
51813e0033 upped version added, search by vm_name by default 2015-12-09 16:30:31 -05:00
Chrrrles Paul
415ab8d046 Merge pull request #1319 from ritzk/vmware-execute-local-process
vmware_vm_shell: add the ability to start program without network connection
2015-12-09 16:25:55 -05:00
Toshio Kuratomi
cbed642009 Simplify code 2015-12-09 12:08:06 -08:00
Brian Coca
2ce866f759 corrected version added to 2.1 2015-12-07 10:03:13 -08:00
Brian Coca
43b63c36fd Merge pull request #973 from wimnat/feature/ec2_vpc_net_facts
New module - ec2_vpc_net_facts
2015-12-07 12:59:49 -05:00
Vladimir Dimov
de672f1ab2 Doc fix ec2_vpc_route_table.py 2015-12-07 19:15:24 +02:00
Vladimir Dimov
9ba686f8e6 Doc fix on route53_health_check.py. Fixed first example. Should be register instead of record. 2015-12-07 18:55:45 +02:00
Atsushi Sasaki
91d3c02571 Enable to resize a volume with cs_volume 2015-12-05 19:21:28 +09:00
Rene Moser
8ec66713d9 cloudstack: fixes and improvements
- cs_affinitygroup: add project support
  Project support in CloudStack for affinity groups is going to be fixed/implemented in the near future, this module should already support.

- cs_affinitygroup:  fix missing returns in doc

- cs_volume: fix disk offering not found

- cs_volume: fix volume not found if created with display_volume=no

- cs_firewall: argument zone is missing, default zone is always used.
  credits for reporting and fixing to @atsaki
  closes #1320

- cs_instance: fix user_data base64 encoding fails if not a string
2015-12-04 09:39:53 +01:00
Rob
186fe2babc Added missing else statement that caused existing rules to be discarded 2015-12-04 01:50:38 +00:00
Ritesh Khadgaray
426e76dddb vmware_vm_shell: add the ability to start program without network connection 2015-12-02 19:33:34 +05:30
Toshio Kuratomi
3c4f954f0f Don't raise or catch StandardError in amazon modules 2015-11-30 19:01:57 -08:00
Rene Moser
f2eb00cc71 cloudstack: cs_instance: implement state=restored 2015-11-30 17:08:07 +01:00
Rene Moser
b7ca7d15ac cloudstack: cs_facts: fix wrong description of returns cloudstack_public_ipv4, cloudstack_public_hostname
Also see http://docs.cloudstack.apache.org/projects/cloudstack-administration/en/4.6/api.html#user-data-and-meta-data
2015-11-25 23:07:30 +01:00
Brian Coca
0c1d20865d Merge pull request #1250 from resmo/for-ansible
cloudstack: new module cs_volume
2015-11-25 13:38:22 -08:00
Rene Moser
87065005aa cloudstack: new module cs_volume 2015-11-24 19:04:13 +01:00
Brian Coca
cde758332a Merge pull request #971 from atplanet/bug/vpc-subnet-tag-values-not-updating
Ensure tag values get updated in ec2_vpc_subnet
2015-11-23 09:54:20 -08:00
Brian Coca
2775be99d3 Merge pull request #1268 from ryansydnor/s3_bucket
Use boto normalized location for bucket creation
2015-11-23 09:40:00 -08:00
Toshio Kuratomi
b87e3ce362 Quote strings that make the module docs fail to build 2015-11-20 13:57:58 -08:00
Toshio Kuratomi
19374903ac Switch StrictVersion for LooseVersion since some distros ship
beta versions and StrictVersion would fail on that.

Also clean up some minor style things
2015-11-20 12:36:36 -08:00
Toshio Kuratomi
d3f0d3880c Merge pull request #444 from olsaki/devel
Add docker_login module
2015-11-20 12:25:25 -08:00
Olaf Kilian
c629d5b013 Add requirement and check for compatible version of docker-py 2015-11-20 21:05:19 +01:00
Olaf Kilian
66964f660a Set no_log for password argument 2015-11-20 20:25:50 +01:00
Ryan Sydnor
a56fe04683 Use boto normalized location for bucket creation
If a bucket is being created in us-east-1, the module passed
'us-east-1' to boto's s3.create_bucket method rather than
Location.DEFAULT (an empty string). This caused boto to generate
invalid XML which AWS was unable to interpret.
2015-11-20 13:55:46 -05:00
Alberto Gireud
c9e4c32f41 Fix return documentation 2015-11-16 17:31:53 -06:00
Brian Coca
aa859f6331 Merge pull request #1220 from agireud/os_project
Add openstack project module
2015-11-16 15:04:34 -08:00
Toshio Kuratomi
e52e015791 Documentation fixes 2015-11-11 12:38:51 -08:00
Toshio Kuratomi
949610bbce Merge pull request #1202 from joelthompson/feature/sns_topic
Add sns_topic module to manage AWS SNS topics
2015-11-11 11:25:57 -08:00
Alberto Gireud
b01f083ec3 Add openstack project module 2015-11-09 16:13:53 -06:00
Etherdaemon
1ee6962c93 Add new module to allow for getting and listing of Route53 relevant details 2015-11-06 09:39:24 +10:00
Joel Thompson
437a62836f Add sns_topic module to manage AWS SNS topics
This adds an sns_topic module which allows you to create and delete AWS
SNS topics as well as subscriptions to those topics.
2015-11-03 23:01:50 -05:00
wimnat
a21d935e66 Prevent ec2_remote_facts from failing when listing a terminated instance 2015-11-03 01:03:31 +00:00
Brian Coca
dd3a2b2e30 Merge pull request #1089 from wimnat/feature/ec2_remote_facts_refactor
Refactor ec2_remote_facts to use filters
2015-11-02 19:16:52 -05:00
Brian Coca
80f198a82f added missing : to docs 2015-11-02 14:19:11 -05:00
Toshio Kuratomi
4bf75fca9f Merge pull request #788 from ansible/open_url-vsphere-copy
Port vsphere_copy from httplib to open_url for TLS cert validation
2015-11-02 08:59:35 -08:00
Rene Moser
d589a2ea12 cloudstack: cs_portforward: fix example does not match description 2015-11-01 17:18:23 +01:00
Brian Coca
f4fd9a4639 Merge pull request #1136 from CenturylinkTechnology/minor-changes-and-bug-fixes
Bug fixes and minor enhancements to CenturyLink cloud modules
2015-10-29 20:48:30 -04:00
Matteo Acerbi
fdffa55496 Fix docs for ec2_vpc_route_table
The documentation pointed to vpc_peering_connection, not vpc_peering_connection_id.
2015-10-28 12:15:24 +01:00
Olaf Kilian
98b21ee7f3 Improve registry key parity between clients
* Don't extract hostname part from docker_url since this leads to
  docker CLI client not recognizing Docker Hub credentials set by
  docker_login module anymore (looks for the full URL as a key).
2015-10-28 10:14:54 +01:00
Olaf Kilian
988be3458d Rework change detection 2015-10-28 10:13:35 +01:00
Olaf Kilian
9d39885d18 Adapt to new dockercfg file location and structure 2015-10-28 10:04:55 +01:00
Siva Popuri
8b7c3677fd added author to module doc string. 2015-10-23 09:34:58 -05:00
Olaf Kilian
ef64423683 Make module importable for unit tests 2015-10-23 06:34:22 +02:00
Olaf Kilian
c3d15a56cf Set default for email parameter to None 2015-10-23 06:33:10 +02:00
Olaf Kilian
e86131c62f Add requirement for python >= 2.6 2015-10-23 06:29:39 +02:00
Olaf Kilian
85cc47c9e1 Default registry to docker hub 2015-10-23 06:28:28 +02:00
Łukasz Proszek
a30a1eef86 add lxc support, without dropping openvz 2015-10-23 00:35:41 +02:00
Brian Coca
b65a583902 added version_added to new feature, removed unused aliases 2015-10-22 08:31:49 -04:00
Brian Coca
6342d35c48 Merge pull request #1082 from daniel-sc/devel
configurable timeout for creating gce image
2015-10-22 08:27:41 -04:00
whiter
89f8e249fa Refactor ec2_remote_facts to use filters 2015-10-22 09:07:08 +11:00
Siva Popuri
e8fe9167d7 Added RETURN doc string for all modules and few minor enhancements. 2015-10-21 12:36:51 -05:00
Chrrrles Paul
405c3cb2c7 tpyo in doc string 2015-10-21 18:54:53 +09:00
Brian Coca
eeeb1264d3 Merge pull request #1090 from wimnat/feature/eni_facts_filters
Use filters attribute rather than eni id
2015-10-19 17:12:10 -04:00
Toshio Kuratomi
b60d6e754b Fix doc build by moving misplaced CIDR documentation 2015-10-19 09:14:06 -07:00
Rene Moser
c142bf0d44 cloudstack: add new loadbalancer rule modules 2015-10-19 17:36:33 +02:00
Brian Coca
618ed0012c Merge pull request #1046 from shawnsi/vpc-route-table
Check mode support for VPC route table creation
2015-10-19 11:31:21 -04:00
Brian Coca
7ca42c0bc0 Merge pull request #730 from CenturylinkTechnology/clc_aa_policy
clc_aa_policy : the ansible module to manage anti affinity policies in centurylink cloud
2015-10-16 19:21:21 -04:00
Brian Coca
e8a919943c Merge pull request #731 from CenturylinkTechnology/clc_alert_policy
clc_alert_policy : the ansible module to manage alert policies in centurylink cloud
2015-10-16 19:20:16 -04:00
Brian Coca
a64649bf76 Merge pull request #781 from CenturylinkTechnology/clc_server_snapshot
clc_server_snapshot: Ansible module for managing server snapshots in Centurylink Cloud
2015-10-16 19:18:59 -04:00
wimnat
aef2b929c9 New module - ec2_vol_facts 2015-10-15 01:09:12 +00:00
Toshio Kuratomi
8ce3104bc5 Convert from dos line endings to unix because dos line endings break our documentation build. 2015-10-14 08:42:25 -07:00
whiter
62cd2d9c18 Use filters attribute rather than eni id so facts can be filtered on much more. Matches the new ec2_vpc_route_table_facts and ec2_vpc_subnet_facts modules 2015-10-13 17:54:16 +11:00
Rob
5f3f15fbc0 Use doc fragment and fix examples 2015-10-13 13:26:19 +11:00
Shawn Siefkas
dbdd2475e6 Handling dry run exception 2015-10-12 10:17:45 -05:00
Charles Paul
51bb65c9a3 reference instance_id in docs, fixes for calls to fail_json 2015-10-12 08:35:21 -05:00
daniel-sc
dbb0bcd9e4 configurable timeout for creating gce image 2015-10-11 17:18:38 +02:00
Brian Coca
205115ea1f updated to use shared region docs from ec2 2015-10-07 23:20:27 -04:00
Matt Martz
abf7ee579e sys.exit removal for cloud/google/gce_img.py and cloud/google/gce_tag.py 2015-10-05 13:23:00 -05:00
Matt Martz
55dab7cd1b sys.exit removal for cloud/misc/ovirt.py 2015-10-05 13:22:43 -05:00
Matt Martz
b82ebdde19 sys.exit removal for cloud/xenserver_facts.py 2015-10-05 13:22:32 -05:00
Matt Martz
d89ca8cc01 Merge pull request #1058 from sivel/xenserver-imports
Switch from old style replacer code to new style for ansible.module_utils.basic
2015-10-05 13:07:03 -05:00
Matt Martz
6732181a39 Switch from old style replacer code to new style for ansible.module_utils.basic 2015-10-05 12:58:47 -05:00
Matt Martz
1a76f4cc22 Fix interpreter line in a few vmware modules 2015-10-05 12:55:39 -05:00
Rick Mendes
2cc18b8780 added missing license 2015-10-05 10:29:25 -07:00
Greg DeKoenigsberg
b69362647a Merge pull request #1011 from resmo/feature/args_specs
cloudstack: implement common argument spec handling
2015-09-30 16:47:19 -04:00
Greg DeKoenigsberg
beb362dd11 Merge pull request #633 from loia/feature/aws_sqs
Add new Amazon SQS module
2015-09-30 16:45:33 -04:00
Greg DeKoenigsberg
a4c2928712 Merge pull request #783 from wimnat/feature/ec2_vpc_subnet_facts
New module - ec2_vpc_subnet_facts
2015-09-30 16:43:54 -04:00
Greg DeKoenigsberg
9447bf9c6f Merge pull request #1008 from privateip/vca_vapp
cleaned up vca_vapp module to focus on managing vapps
2015-09-30 16:34:48 -04:00
Greg DeKoenigsberg
2e588d8fc5 Merge pull request #1014 from resmo/for_ansible
cloudstack: fix redundant security_group return
2015-09-30 16:30:40 -04:00
Greg DeKoenigsberg
ed2708827d Merge pull request #963 from sgzijl/391-append-missing-dot
issue #931 append dot to zone if not defined
2015-09-30 16:29:05 -04:00
Shawn Siefkas
6186da08ef Check mode support for VPC route table creation 2015-09-30 11:00:36 -05:00
Mark Chance
0147a89957 fix, update the documentation of the modules 2015-09-28 10:53:26 -06:00
Toshio Kuratomi
4cf2c5555e Fix for errors in the generated rst 2015-09-28 08:38:04 -07:00
Toshio Kuratomi
953d382aa5 docs fixes 2015-09-28 08:22:59 -07:00
Brian Coca
bc07c3b504 Merge pull request #1024 from andybak/patch-2
Fix existing_mailbox check
2015-09-26 08:40:37 -04:00
Mark Chance
73382f4574 WIP documentation update 2015-09-25 11:59:28 -06:00
Benno Joy
f3a9a92ffe remove facts and fix docs for taskdefinition module 2015-09-24 14:28:10 +05:30
Benno Joy
f4f52119b3 Merge pull request #951 from Java1Guy/ecs_task_module
cloud amazon ECS task modules
2015-09-24 14:18:39 +05:30
Benno Joy
936a2db7f1 Merge pull request #949 from Java1Guy/ecs_taskdefinition_module
cloud amazon ECS task definition module
2015-09-24 14:18:09 +05:30
Benno Joy
6c0a830962 Merge pull request #950 from Java1Guy/ecs_cluster_module
cloud amazon ECS cluster module
2015-09-24 14:17:28 +05:30
Andy Baker
0ab8c9383d Fix existing_mailbox check 2015-09-24 09:42:19 +01:00
Brian Coca
8b83aa4c50 Merge pull request #643 from zimbatm/route53-health-check
route53_health_check: new module
2015-09-22 16:35:58 -04:00
Rene Moser
bcfe75a52d cloudstack: fix redundant security_group return 2015-09-22 18:28:18 +02:00
Rene Moser
faa575afb5 cloudstack: implement common argument spec handling 2015-09-22 18:24:04 +02:00
Peter Sprygada
0f90661752 cleaned up vca_vapp module to focus on managing vapps 2015-09-21 20:03:32 -04:00
Gerard Lynch
401bb3f10d minor doc fix 2015-09-21 20:28:42 +01:00
Mark Chance
b9aef8beb2 add author tag in doc 2015-09-21 09:57:37 -06:00
Mark Chance
ff4c000451 add author tag in doc 2015-09-21 09:56:32 -06:00
Mark Chance
1a653d4921 add author tag in doc 2015-09-21 09:55:31 -06:00
Mark Chance
d3de924981 add author tag in doc 2015-09-21 09:52:27 -06:00
Chrrrles Paul
6950db5d01 Merge pull request #991 from privateip/vca_nat
updated vca_nat module to use common vca library
2015-09-21 08:09:04 -05:00
Chrrrles Paul
2476fe8325 Merge pull request #992 from privateip/vca_vapp
refactor vca_vapp to use vca common module
2015-09-21 08:08:56 -05:00
Chrrrles Paul
608067417e Merge pull request #993 from privateip/vca_fw
refactored vca_fw to use vca common module
2015-09-21 08:08:37 -05:00
Rob
bc560617c1 Tolerate missing classic_link_enabled attribute 2015-09-21 11:13:56 +10:00
Brian Coca
3d07eb5419 Merge pull request #941 from resmo/feature/cs_user
cloudstack: new module cs_user
2015-09-18 07:43:13 -04:00
Peter Sprygada
fedef0c958 refactor vca_vapp to use vca common module 2015-09-17 15:22:27 -04:00
Peter Sprygada
71ecaeb9f0 refactored vca_fw to use vca common module 2015-09-17 14:57:48 -04:00
Peter Sprygada
a4f1653b95 updated vca_nat module to use common vca library 2015-09-17 14:52:49 -04:00
Jérémie Astori
0c74601ea5 Fix tpyo 2015-09-17 14:01:29 +02:00
James Cammarata
4c59101825 Merge pull request #961 from resmo/feature/cs_account
cloudstack: cs_account improvements
2015-09-16 14:01:13 -04:00
Rob
d1c15d6c84 Documentation fixup 2015-09-14 10:38:36 +10:00
whiter
767605122a New module - ec2_vpc_net_facts 2015-09-14 09:43:02 +10:00
Tom Bamford
65c41451f0 Ensure tag values get updated in ec2_vpc_subnet 2015-09-13 15:37:23 +00:00
Siert Zijl
57f9b735f3 #931 append dot to zone if not defined 2015-09-11 20:14:59 +02:00
Rene Moser
c419dabe12 cloudstack: cs_account re-factor error handling state=present 2015-09-11 19:04:41 +02:00
Rene Moser
67bc8e9fda cloudstack: cs_account: create account for states locked/disabled/enabled if not present 2015-09-11 19:03:35 +02:00
Rene Moser
462c90eb54 cloudstack: cs_account: add state unlocked as alias for enabled 2015-09-11 19:02:01 +02:00
Rene Moser
578dbe1d37 cloudstack: new module cs_user 2015-09-11 09:08:39 +02:00
Rene Moser
6bd40787ce cloudstack: fix templates not always have checksums
It is not documented but it seems only registered templates have checksums. Templates created from VMs and snapshot don't.

This change fixes the traceback. But we must re-thinking, if it still makes sense to look for the checksum.
2015-09-11 08:52:30 +02:00
Brian Coca
5a39c5ed0d Merge pull request #948 from steynovich/patch-1
Update route53_zone.py
2015-09-10 21:05:27 -04:00
Evan Carter
604578cfcc fixing hang after creation 2015-09-10 15:23:57 -04:00
Mark Chance
dca0d4a08c update version, fix fail msgs 2015-09-10 08:25:34 -06:00
Mark Chance
158b9b664d update version, fix fail msgs 2015-09-10 08:25:04 -06:00
Mark Chance
4524cc1e27 update version, fix fail msgs 2015-09-10 08:22:40 -06:00
Mark Chance
de95580f66 fix docs, enhance fail msgs 2015-09-10 08:02:24 -06:00
Mark Chance
03cd38e7ab cloud amazon ECS task definition module 2015-09-09 17:09:46 -06:00
Mark Chance
f802fc2ce3 cloud amazon ECS cluster module 2015-09-09 17:08:48 -06:00
Mark Chance
a5083a4a17 cloud amazon ECS task modules 2015-09-09 17:07:04 -06:00
Mark Chance
f478530803 cloud amazon ECS service modules 2015-09-09 17:05:43 -06:00
steynovich
bdfb67ae28 Update route53_zone.py
Proposed fix for issue #940

Fix: Include common AWS parameters in module arguments
2015-09-09 23:43:15 +02:00
Brian Coca
6ba52c694d Merge pull request #924 from resmo/for-ansible
cloudstack: cs_account: fix error handing on state=absent
2015-09-09 08:09:27 -04:00
Peter Sprygada
356e867721 adds missing serialize_instance function 2015-09-08 10:50:13 -04:00
Bret Martin
e5fdbc25a2 Only wait for ENI attachment at creation when instance_id is specified 2015-09-06 22:00:02 -04:00
Toshio Kuratomi
a55dbb717c Try to revert the pieces of #651 that @willthames and @erydo requested 2015-09-06 07:56:58 -07:00
Toshio Kuratomi
70568aa242 Merge pull request #651 from wimnat/feature/ec2_vpc_igw
Fixed incorrect connect_to_aws call
2015-09-06 07:50:58 -07:00
Rene Moser
6e2b97427b cloudstack: cs_account: fix error handing on state=absent 2015-09-06 01:42:56 +02:00
Toshio Kuratomi
6a3cf63351 correct documentation formatting 2015-09-05 08:55:34 -07:00
Brian Coca
a9d5392b71 fixed option description 2015-09-04 14:49:46 -04:00
Brian Coca
12f8f125cf Merge pull request #918 from dbhirko/devel
ec2_vpc_igw.py changed boto connection obejct to vpc
2015-09-04 14:37:24 -04:00
Brian Coca
4a6285b774 Merge pull request #886 from DazWorrall/feature/cs_instance_custom
Add support for custom service offerings
2015-09-04 12:46:08 -04:00
Brian Coca
00ba47e4ed Merge pull request #718 from wimnat/feature/s3_lifecycle
New module - s3_lifecycle
2015-09-04 12:44:10 -04:00
Brian Coca
2ca3a8112b Merge pull request #842 from stelligent/devel
fixes issue creating table when no range_key_name is defined
2015-09-04 12:42:15 -04:00
dbhirko
041d6f6077 Change boto connection object from ec2 to vpc
Issue 906 - ec2_vpc_igw has incorrect connection parameters
2015-09-03 16:00:41 -04:00
Toshio Kuratomi
903d209071 Merge pull request #896 from resmo/for-ansible
cloudstack: add api_region arg
2015-09-03 13:00:05 -07:00
Brian Coca
f2c6d9f9a7 Merge pull request #597 from wimnat/feature/ec2_vpc_route_table
Feature/ec2 vpc route table
2015-09-02 09:56:03 -04:00
whiter
65d3a3be59 Remove debug print statement. Fixed ensure_propagation call to pass 'route_table' and 'connection'. 2015-09-02 14:34:56 +01:00
Rene Moser
0c1257b0c1 cloudstack: cs_instance: deploy instance in desired state on state=started/stopped
Before this change, an instance must be present for make use of state=stopped/started. Now we are deploying an instance in the desire state if it does not exist.

In this case all args needed to deploy the instance must be passed. However the short form for stopping/starting an _existing_ instance still works as before.
2015-09-01 00:36:15 +02:00
Brian Coca
9e8f24ff47 Merge pull request #898 from resmo/feature/temlate-cross-zones
cloudstack: cs_template: add new arg cross_zones
2015-08-31 15:40:52 -04:00
whiter
506d1df22c Documentation examples fix 2015-08-31 17:39:13 +02:00
Rene Moser
52a3d99873 cloudstack: add api_region arg
* docs in module_docs_fragments/cloudstack.py
* implemented in module_utils/cloudstack.py -> https://github.com/ansible/ansible/pull/12083
2015-08-31 15:55:22 +02:00
Rene Moser
2dc67f7c6b cloudstack: cs_template: add new arg cross_zones 2015-08-31 15:53:02 +02:00
whiter
a2fb8edb3c Added option to specify tags or route-table-id, quoted doc strings, added more detail to returned route table object, numerous minor fixes 2015-08-30 22:25:05 +02:00
Bret Martin
96e4194588 Don't enable route propagation on a virtual gateway with propagated routes 2015-08-30 22:21:46 +02:00
Bret Martin
29ce49e84f Don't attempt to delete routes using propagating virtual gateways 2015-08-30 22:21:45 +02:00
Bret Martin
271cbe833e Call ensure_propagation() with the retrieved route table ID 2015-08-30 22:21:45 +02:00
Bret Martin
954f48f28a Don't check original_association_ids since it is not set, per comment above 2015-08-30 22:21:44 +02:00
Bret Martin
546858cec9 Correct enable_vgw_route_propagation test_run parameter to dry_run 2015-08-30 22:21:44 +02:00
Rob White
3e02c0d3d9 Blank aliases removed 2015-08-30 22:21:43 +02:00
whiter
3527aec2c5 Changed to use "connect_to_aws" method 2015-08-30 22:21:43 +02:00
whiter
4f2cd7cb6e Documentation update 2015-08-30 22:21:43 +02:00
Herby Gillot
c9883db03d Allow VPC igw to be specified by gateway_id: "igw" 2015-08-30 22:21:42 +02:00
Robert Estelle
43566b0caf ec2_vpc_route_tables - Allow reference to subnets by id, name, or cidr. 2015-08-30 22:21:42 +02:00
Robert Estelle
17ed722d55 ec2_vpc_route_tables - Remove more dict comprehensions. 2015-08-30 22:21:42 +02:00
Robert Estelle
f0a4be1b4b ec2_vpc_route_table - Fix unintended tag search regression. 2015-08-30 22:21:42 +02:00
Robert Estelle
f4ce0dbc96 ec2_vpc_route_table - Support route propagation through VGW.
Based on work by Bret Martin via pull request #356
2015-08-30 22:21:41 +02:00
Robert Estelle
f79aeaee86 ec2_vpc - More dry running in check mode. 2015-08-30 22:21:41 +02:00
Robert Estelle
e3c14c1b02 ec2_vpc - Update dict comprehensions and {} formats for python2.6 2015-08-30 22:21:41 +02:00
Robert Estelle
0e635dd090 ec2_vpc - Update some documentation strings. 2015-08-30 22:21:40 +02:00
Robert Estelle
a50f5cac2c ec2_vpc - More efficient tag search. 2015-08-30 22:21:40 +02:00
Robert Estelle
95006afe8c ec2_vpc - Fail module using fail_json on boto import failure. 2015-08-30 22:21:39 +02:00
Robert Estelle
60efbe8bec ec2_vpc - VPCException -> AnsibleVPCException 2015-08-30 22:21:39 +02:00
Robert Estelle
e395bb456e EC2 subnet/route-table: Simplify tag updating. 2015-08-30 22:21:38 +02:00
Robert Estelle
4d35698a30 Split out route table and subnet functionality from VPC module. 2015-08-30 22:21:38 +02:00
Darren Worrall
a284c4e974 More doc fixes 2015-08-28 13:29:30 +01:00
Alex Punco
29c8b50d56 fix creation containers on btrfs subvolumes 2015-08-28 13:26:21 +03:00
Darren Worrall
37b601b5f9 Doc fix 2015-08-28 09:00:30 +01:00
Darren Worrall
50d9589bc8 Use module level validation for params 2015-08-28 08:21:20 +01:00
Chrrrles Paul
80cae51b16 Merge pull request #873 from jcpowermac/add_vmware_migrate_vmk_module
Merge into extra for further testing and feedback  --  New VMware Module to support migrating vmkernel adapter
2015-08-27 18:05:36 -05:00
Chrrrles Paul
f20d10728e Merge pull request #874 from mtnbikenc/add_vmware_target_canonical_facts_module
Merging for further testing / feedback.
2015-08-27 17:55:42 -05:00
Chrrrles Paul
50b3612fef Merge pull request #889 from ansible/revert-884-revert-867-add_vmware_vmkernel_ip_config_module
Merge for real now -- Merge in devel extras for further testing and feedback --  Revert "Revert "New VMware ...
2015-08-27 17:53:19 -05:00
Chrrrles Paul
2ccbc5830e Merge pull request #870 from mtnbikenc/add_vmware_vm_vss_dvs_migrate_module
Merge in devel for further testing, and hopefully discussion with community about future direction for the cloud/vmware modules. -- 

New VMware Module to support migrating a VM from a vSS to a vDS
2015-08-27 17:52:26 -05:00
Chrrrles Paul
2647d2b637 Revert "Revert "New VMware Module to support configuring a VMware vmkernel IP…" 2015-08-27 17:44:29 -05:00
Darren Worrall
e8137d4065 Add support for custom service offerings
This adds 3 new params: cpu, cpu_speed, and memory, which are required
together.
2015-08-27 09:19:51 +01:00
Chrrrles Paul
02e3adf402 Revert "New VMware Module to support configuring a VMware vmkernel IP Address" 2015-08-26 20:43:43 -05:00
Chrrrles Paul
7ef187bbbd Merge pull request #867 from mtnbikenc/add_vmware_vmkernel_ip_config_module
Looks good -- can extend if more customization of virtualnic spec is needed --   New VMware Module to support configuring a VMware vmkernel IP Address
2015-08-26 18:21:31 -05:00
Chrrrles Paul
2c7afe17f0 Merge pull request #869 from jcpowermac/add_vmware_dvswitch_module
Merging for further testing -- New VMware Module to support adding distribute vswitch
2015-08-26 17:49:57 -05:00
Chrrrles Paul
e7fbbc8528 Merge pull request #871 from jcpowermac/add_vmware_host_module
New VMware Module to support adding a ESXi host to vCenter
2015-08-26 17:43:14 -05:00
Chrrrles Paul
091bd6b1ff Merge pull request #868 from mtnbikenc/add_vmware_vmkernel_module
Merging for further testing -- New VMware Module to support adding a VMware vmkernel interface
2015-08-26 17:38:47 -05:00
Chrrrles Paul
d8197a3b7f Merge pull request #866 from jcpowermac/add_vmware_dvs_portgroup_module
New VMware Module to support adding distributed portgroups -- Looks good to me
2015-08-26 17:26:49 -05:00
Toshio Kuratomi
e96a2cf9fc Merge pull request #877 from resmo/for-ansible
cloudstack: fixes and consistency change
2015-08-26 13:41:40 -07:00
Brian Coca
c6fe5ced14 Merge pull request #875 from jcpowermac/add_vmware_portgroup_module
New VMware Module to support adding standard portgroups
2015-08-26 07:42:32 -04:00
Brian Coca
3e50a40803 Merge pull request #872 from mtnbikenc/add_vmware_vm_facts_module
New VMware Module to support gathering the list of VMs
2015-08-26 07:40:40 -04:00
Brian Coca
047ab3372a Merge pull request #752 from CenturylinkTechnology/clc_blueprint_package
clc_blueprint_package: module for installing blueprint packages for servers in Centurylink Cloud
2015-08-26 07:39:29 -04:00
Brian Coca
bd07723449 Merge pull request #779 from CenturylinkTechnology/clc_firewall_policy
clc_firewall_policy: Module for managing firewall policies in centurylink cloud
2015-08-26 07:38:09 -04:00
Brian Coca
057a1b8d10 Merge pull request #805 from StackPointCloud/module/profitbricks-volume-actions
ProfitBricks Attachments Action Module
2015-08-26 07:23:46 -04:00
Rene Moser
4856701457 cloudstack: cs_domain: rename argument cleanup to clean_up for consistency 2015-08-25 13:31:08 +02:00
Brian Coca
818ff40653 Merge pull request #865 from mtnbikenc/add_vmware_vsan_cluster_module
New VMware Module to support adding a VMware vSAN cluster
2015-08-24 17:22:43 -04:00
Brian Coca
34b6daa843 Merge pull request #864 from jcpowermac/add_vmware_dvs_host_module
New VMware Module to support adding an ESXi host to a distrib switch
2015-08-24 17:20:27 -04:00
Brian Coca
2d66b5708b Merge pull request #863 from mtnbikenc/add_vmware_vswitch_module
New VMware Module to support adding a VMware vSwitch
2015-08-24 17:17:39 -04:00
Joseph Callen
6ca9e7c25f New VMware Module to support adding standard portgroups 2015-08-24 13:58:42 -04:00
Russell Teague
c48945c10e Adding vmware_target_canonical_facts module 2015-08-24 13:55:47 -04:00
Joseph Callen
09a6760c51 New VMware Module to support migrating vmkernel adapter 2015-08-24 13:54:09 -04:00
Russell Teague
c4b0375eb5 Adding vmware_vm_facts module 2015-08-24 13:51:57 -04:00
Joseph Callen
a2e15f07f8 New VMware Module to support adding an ESXi host to vCenter 2015-08-24 13:48:17 -04:00
Russell Teague
d5e3bd770a Adding vmware_vm_vss_dvs_migrate module 2015-08-24 13:48:16 -04:00
Russell Teague
72579ab3e1 Adding vmware_vmkernel module 2015-08-24 13:44:45 -04:00
Joseph Callen
7beea8a152 New VMware Module to support adding distribute vswitch 2015-08-24 13:44:27 -04:00
Russell Teague
6fbadff17c Adding vmware_vmkernel_ip_config module 2015-08-24 13:39:02 -04:00
Joseph Callen
6945519411 New VMware Module to support adding distributed portgroups 2015-08-24 13:38:13 -04:00
Russell Teague
9cb1e214cb Adding vmware_vsan_cluster module 2015-08-24 13:31:36 -04:00
Brian Coca
bbe1fcf443 Merge pull request #862 from jcpowermac/add_vmware_dns_config_module
New VMware Module to support configuring DNS on ESXi hosts
2015-08-24 13:25:22 -04:00
Brian Coca
c4a7221c82 removed empty notes 2015-08-24 13:25:18 -04:00
Joseph Callen
55f59cec54 New VMware Module to support adding an ESXi host to a distributed vswitch 2015-08-24 13:24:32 -04:00
Brian Coca
b0fae45be4 minor doc updates to vmware_cluster 2015-08-24 13:23:27 -04:00
Russell Teague
b82e15a73b This includes a new module for VMware vSphere
Creates a VMware vSwitch

We have an end-to-end playbook that performs bare metal provisioning and
configuration of vSphere.
The playbooks/tasks and results from that testing is what will be listed
in this PR.
If there are any questions please let either @jcpowermac or @mtnbikenc
know.

Tested with version
```
$ ansible-playbook --version
ansible-playbook 1.9.2
  configured module search path = None

```

Associated tasks used for testing below
```
    - name: Add a temporary vSwitch
      local_action:
        module: vmware_vswitch
        hostname: "{{ inventory_hostname }}"
        username: "{{ esxi_username }}"
        password: "{{ site_passwd }}"
        switch_name: temp_vswitch
        nic_name: "{{ vss_vmnic }}"
        mtu: 9000

```

Verbose testing output and results
```
TASK: [Configure ESXi hostname and DNS servers]
*******************************
<127.0.0.1> REMOTE_MODULE vmware_dns_config password=VALUE_HIDDEN
hostname=foundation-esxi-01 change_hostname_to=cscesxtmp001
domainname=lordbusiness.local dns_servers=192.168.70.3,192.168.70.4
username=root
<127.0.0.1> REMOTE_MODULE vmware_dns_config password=VALUE_HIDDEN
hostname=foundation-esxi-02 change_hostname_to=cscesxtmp002
domainname=lordbusiness.local dns_servers=192.168.70.3,192.168.70.4
username=root
<127.0.0.1> REMOTE_MODULE vmware_dns_config password=VALUE_HIDDEN
hostname=foundation-esxi-03 change_hostname_to=cscesxtmp003
domainname=lordbusiness.local dns_servers=192.168.70.3,192.168.70.4
username=root
changed: [foundation-esxi-01 -> 127.0.0.1] => {"changed": true}
changed: [foundation-esxi-03 -> 127.0.0.1] => {"changed": true}
changed: [foundation-esxi-02 -> 127.0.0.1] => {"changed": true}
```
2015-08-24 13:21:41 -04:00
Joseph Callen
b66c62aab0 New VMware Module to support configuring DNS on ESXi hosts 2015-08-24 13:14:37 -04:00
Joseph Callen
9f47f57700 New VMware Module to support adding a cluster to vCenter 2015-08-24 13:10:21 -04:00
Brian Coca
6999052880 Merge pull request #851 from mjschultz/ec2-elb-facts
[Amazon] Add EC2 ELB Facts module to gather facts about ELBs
2015-08-24 11:25:48 -04:00
Michael J. Schultz
913266c04f Remove old Ansible AWS magic 2015-08-24 10:14:44 -05:00
Michael J. Schultz
be59c0063b Names and aliases matching other modules 2015-08-23 21:11:47 -05:00
Brian Coca
fbf94de0d1 Merge pull request #653 from wimnat/feature/s3_bucket
New module - s3_bucket
2015-08-23 18:33:38 -04:00
Rene Moser
94614d0454 cloudstack: cs_staticnat: fix wrong class name used 2015-08-23 00:06:37 +02:00
Rene Moser
a279207c7b cloudstack: cs_portforward: fix returns for int casting
* missing self.
* variable must be named portforwarding_rule, not resource
2015-08-23 00:04:51 +02:00
Rene Moser
249b7bf969 cloudstack: cs_instance: fix ip address may not be set on default nic 2015-08-23 00:01:52 +02:00
Brian Coca
7a0bfd91bb updated docs to new choice option 2015-08-21 18:07:20 -04:00
Daniël
b56e5c670b add zfs backing store support 2015-08-21 19:42:08 +02:00
Michael J. Schultz
e44ba01b18 Add EC2 ELB Facts module to gather facts about ELBs! 2015-08-20 11:12:51 -05:00
Rene Moser
9bdefef05f cloudstack: cs_network: rename broadcast_domaintype to broadcast_domain_type for consistency 2015-08-19 21:55:56 +02:00
Rene Moser
e8df87375d cloudstack: cs_security_group_rule: fix typo 2015-08-19 21:53:47 +02:00
Rene Moser
28ad84b87a cloudstack: add Simulator as hypervisor 2015-08-19 21:53:07 +02:00
Rene Moser
b95abe0ddd cloudstack: rename displaytext, displayname to dislplay_... for consistency 2015-08-19 21:51:34 +02:00
Rene Moser
2e52f11dc3 cloudstack: use new get_result() handling 2015-08-17 22:33:59 +02:00