Commit graph

99 commits

Author SHA1 Message Date
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
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
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
Toshio Kuratomi
dce3d4054e Return errno and http status as requested by @bcoca 2015-08-05 09:27:03 -07:00
Jonathan Davila
757b952be4 Doc string fix for vsphere_copy 2015-08-04 07:52:51 -05:00
Toshio Kuratomi
3ec3e77d53 Better status conditional from dagwieers 2015-07-30 13:44:13 -07:00
Toshio Kuratomi
1e18550805 Port vsphere_copy from httplib to open_url for TLS cert validation 2015-07-29 23:15:00 -07:00
Brian Coca
74c20b0639 Merge pull request #748 from bennojoy/vca_nat
Module for modifying nat rules  in vcloud air or vcd
2015-07-28 18:46:07 -04:00
Brian Coca
322c1a871c Merge pull request #747 from bennojoy/vca_fw
Module for modifying firewall rules  in vcloud air or vcd
2015-07-28 18:44:37 -04:00
Benno Joy
abaf4ce59d update license 2015-07-28 15:51:57 +05:30
Benno Joy
047e37a28c update license 2015-07-28 15:49:44 +05:30
Brian Coca
dfdd2bb5ed fixed license and copyright 2015-07-24 23:16:35 -04:00
Brian Coca
e35778feba removed redundant version added 2015-07-24 19:16:52 -04:00
Benno Joy
ff2009136f Module for modifying NAT rules in vcloud or vcd 2015-07-23 15:47:32 +05:30
Benno Joy
71e08d6c3f Module for modifying firewall rules in vcloud or vcd 2015-07-23 15:46:27 +05:30
Benno Joy
85ee695cf3 Module for creating vapp/vm in vcloud or vcd 2015-07-23 15:44:47 +05:30
Matt Martz
9f9422fcb5 Update vsphere_copy.py to use new style module_utils import 2015-06-30 13:45:53 -05:00
Dag Wieers
57e7a6662a Work around a software bug in vSphere
Due to a software bug in vSphere, it fails to handle ampersand in datacenter names.
The solution is to do what vSphere does (when browsing) and double-encode ampersands.

It is likely other characters need special treatment like this as well, haven't found any.
2015-06-29 17:08:48 +02:00
Brian Coca
1604382538 monior docfixes
added extensino to vsphere_copy so it actually installs
2015-06-19 11:04:25 -04:00
Dag Wieers
d0cf9617a5 Spurious newline could corrupt payload
Due to a spurious newline we corrupted the payload. It depends on the order of the headers and if there were headers added by vSphere.

The Accept header was also not needed.
2015-06-19 13:30:29 +02:00
Brian Coca
9db032aa11 minor doc update 2015-06-17 09:42:18 -04:00
Dag Wieers
330e66327a New module to copy (push) files to a vCenter datastore 2015-06-17 14:53:17 +02:00
Greg DeKoenigsberg
004dedba8a Changes to author formatting, remove emails 2015-06-16 14:32:39 -04:00
Toshio Kuratomi
88eff11c04 Many more doc fixes 2015-05-15 12:12:26 -07:00
Greg DeKoenigsberg
dfd227f82c Adding author's github id 2015-05-13 14:40:45 -04:00
Toshio Kuratomi
a589a66710 Update module documentation if modules have a dep on python2.6+ 2015-05-11 10:09:56 -07:00
Brian Coca
3148aafa17 moved new module to proper subdir
fixed doc issues
minor code adjustments
2015-04-22 10:18:34 -04:00