mirror of https://github.com/ansible/ansible.git
VMware: Add fix for setting manual MAC address (#32885)
This fix adds ability to set MAC address maunally. Before adding any MAC address, the value is validated. If value is not valid, then MAC address is set to vCenter generated MAC address. Also, added integration tests for this change. Fixes: #21161 Signed-off-by: Abhijeet Kasurde <akasurde@redhat.com>pull/33133/head
parent
3c1fb9b547
commit
fbe946719e
@ -0,0 +1,61 @@
|
||||
# Test code for the vmware_guest module.
|
||||
# Copyright: (c) 2017, Abhijeet Kasurde <akasurde@redhat.com>
|
||||
# GNU General Public License v3.0+ (see COPYING or https://www.gnu.org/licenses/gpl-3.0.txt)
|
||||
|
||||
- name: Wait for Flask controller to come up online
|
||||
wait_for:
|
||||
host: "{{ vcsim }}"
|
||||
port: 5000
|
||||
state: started
|
||||
|
||||
- name: kill vcsim
|
||||
uri:
|
||||
url: http://{{ vcsim }}:5000/killall
|
||||
- name: start vcsim with no folders
|
||||
uri:
|
||||
url: http://{{ vcsim }}:5000/spawn?datacenter=1&cluster=1&folder=0
|
||||
register: vcsim_instance
|
||||
|
||||
- name: Wait for Flask controller to come up online
|
||||
wait_for:
|
||||
host: "{{ vcsim }}"
|
||||
port: 443
|
||||
state: started
|
||||
|
||||
- debug: var=vcsim_instance
|
||||
|
||||
- name: create new VMs with manual MAC address
|
||||
vmware_guest:
|
||||
validate_certs: False
|
||||
hostname: "{{ vcsim }}"
|
||||
username: "{{ vcsim_instance['json']['username'] }}"
|
||||
password: "{{ vcsim_instance['json']['password'] }}"
|
||||
name: "{{ item | basename }}"
|
||||
guest_id: centos64Guest
|
||||
datacenter: "{{ (item|basename).split('_')[0] }}"
|
||||
hardware:
|
||||
num_cpus: 1
|
||||
memory_mb: 512
|
||||
disk:
|
||||
- size: 0gb
|
||||
type: thin
|
||||
autoselect_datastore: True
|
||||
networks:
|
||||
- name: VM Network
|
||||
ip: 192.168.10.12
|
||||
netmask: 255.255.255.0
|
||||
gateway: 192.168.10.254
|
||||
mac: aa:bb:cc:dd:aa:42
|
||||
state: poweredoff
|
||||
folder: "{{ item | dirname }}"
|
||||
with_items:
|
||||
- "/DC0/vm/DC0_H0_VM12"
|
||||
register: clone_d1_c1_f0
|
||||
|
||||
- debug: var=clone_d1_c1_f0
|
||||
|
||||
- name: assert that changes were made
|
||||
assert:
|
||||
that:
|
||||
- "clone_d1_c1_f0.results[0]['instance']['hw_eth0']['addresstype'] == 'manual'"
|
||||
- "clone_d1_c1_f0.results[0]['instance']['hw_eth0']['macaddress'] == 'aa:bb:cc:dd:aa:42'"
|
||||
Loading…
Reference in New Issue