mirror of https://github.com/ansible/ansible.git
VMWare: update documentation for linked_clone (#42881)
linked_clone requires snapshot_src parameter. This fix makes them required_together and update documentation. Also, testcase is added. Fixes: #42349 Signed-off-by: Abhijeet Kasurde <akasurde@redhat.com>pull/41319/head
parent
97d4e53131
commit
cadbd6ea9c
@ -0,0 +1,129 @@
|
|||||||
|
# Test code for the vmware_guest module.
|
||||||
|
# Copyright: (c) 2018, 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
|
||||||
|
|
||||||
|
- name: get a list of VMS from vcsim
|
||||||
|
uri:
|
||||||
|
url: http://{{ vcsim }}:5000/govc_find?filter=VM
|
||||||
|
register: vmlist
|
||||||
|
|
||||||
|
- debug: var=vcsim_instance
|
||||||
|
- debug: var=vmlist
|
||||||
|
|
||||||
|
- name: create new linked clone without specifying snapshot_src
|
||||||
|
vmware_guest:
|
||||||
|
validate_certs: False
|
||||||
|
hostname: "{{ vcsim }}"
|
||||||
|
username: "{{ vcsim_instance['json']['username'] }}"
|
||||||
|
password: "{{ vcsim_instance['json']['password'] }}"
|
||||||
|
name: "{{ 'new_vm_' + item|basename }}"
|
||||||
|
template: "{{ item|basename }}"
|
||||||
|
guest_id: centos64Guest
|
||||||
|
datacenter: "{{ (item|basename).split('_')[0] }}"
|
||||||
|
folder: "{{ item|dirname }}"
|
||||||
|
linked_clone: True
|
||||||
|
with_items: "{{ vmlist['json'] }}"
|
||||||
|
register: linked_clone_d1_c1_f0
|
||||||
|
ignore_errors: True
|
||||||
|
|
||||||
|
- debug: var=linked_clone_d1_c1_f0
|
||||||
|
|
||||||
|
- name: assert that changes were not made
|
||||||
|
assert:
|
||||||
|
that:
|
||||||
|
- "linked_clone_d1_c1_f0.results|map(attribute='changed')|unique|list == [false]"
|
||||||
|
|
||||||
|
- name: create new linked clone without specifying linked_clone
|
||||||
|
vmware_guest:
|
||||||
|
validate_certs: False
|
||||||
|
hostname: "{{ vcsim }}"
|
||||||
|
username: "{{ vcsim_instance['json']['username'] }}"
|
||||||
|
password: "{{ vcsim_instance['json']['password'] }}"
|
||||||
|
name: "{{ 'new_vm_' + item|basename }}"
|
||||||
|
template: "{{ item|basename }}"
|
||||||
|
guest_id: centos64Guest
|
||||||
|
datacenter: "{{ (item|basename).split('_')[0] }}"
|
||||||
|
folder: "{{ item|dirname }}"
|
||||||
|
snapshot_src: "snap_shot1"
|
||||||
|
with_items: "{{ vmlist['json'] }}"
|
||||||
|
register: linked_clone_d1_c1_f0
|
||||||
|
ignore_errors: True
|
||||||
|
|
||||||
|
- debug: var=linked_clone_d1_c1_f0
|
||||||
|
|
||||||
|
- name: assert that changes were not made
|
||||||
|
assert:
|
||||||
|
that:
|
||||||
|
- "linked_clone_d1_c1_f0.results|map(attribute='changed')|unique|list == [false]"
|
||||||
|
|
||||||
|
# TODO: VCSIM: snapshot is not supported in current vcsim
|
||||||
|
#
|
||||||
|
#- name: create new linked clone with linked_clone and snapshot_src
|
||||||
|
# vmware_guest:
|
||||||
|
# validate_certs: False
|
||||||
|
# hostname: "{{ vcsim }}"
|
||||||
|
# username: "{{ vcsim_instance['json']['username'] }}"
|
||||||
|
# password: "{{ vcsim_instance['json']['password'] }}"
|
||||||
|
# name: "{{ 'new_vm_' + item|basename }}"
|
||||||
|
# template: "{{ item|basename }}"
|
||||||
|
# guest_id: centos64Guest
|
||||||
|
# datacenter: "{{ (item|basename).split('_')[0] }}"
|
||||||
|
# folder: "{{ item|dirname }}"
|
||||||
|
# snapshot_src: "snap_shot1"
|
||||||
|
# linked_clone: True
|
||||||
|
# with_items: "{{ vmlist['json'] }}"
|
||||||
|
# register: linked_clone_d1_c1_f0
|
||||||
|
# ignore_errors: True
|
||||||
|
|
||||||
|
#- debug: var=linked_clone_d1_c1_f0
|
||||||
|
|
||||||
|
#- name: assert that changes were made
|
||||||
|
# assert:
|
||||||
|
# that:
|
||||||
|
# - "linked_clone_d1_c1_f0.results|map(attribute='changed')|unique|list == [true]"
|
||||||
|
|
||||||
|
# TODO: VCSIM: snapshot is not supported in current vcsim
|
||||||
|
#
|
||||||
|
#- name: create new linked clone with linked_clone and snapshot_src again
|
||||||
|
# vmware_guest:
|
||||||
|
# validate_certs: False
|
||||||
|
# hostname: "{{ vcsim }}"
|
||||||
|
# username: "{{ vcsim_instance['json']['username'] }}"
|
||||||
|
# password: "{{ vcsim_instance['json']['password'] }}"
|
||||||
|
# name: "{{ 'new_vm_' + item|basename }}"
|
||||||
|
# template: "{{ item|basename }}"
|
||||||
|
# guest_id: centos64Guest
|
||||||
|
# datacenter: "{{ (item|basename).split('_')[0] }}"
|
||||||
|
# folder: "{{ item|dirname }}"
|
||||||
|
# snapshot_src: "snap_shot1"
|
||||||
|
# linked_clone: True
|
||||||
|
# with_items: "{{ vmlist['json'] }}"
|
||||||
|
# register: linked_clone_d1_c1_f0
|
||||||
|
# ignore_errors: True
|
||||||
|
|
||||||
|
#- debug: var=linked_clone_d1_c1_f0
|
||||||
|
|
||||||
|
#- name: assert that changes were not made
|
||||||
|
# assert:
|
||||||
|
# that:
|
||||||
|
# - "linked_clone_d1_c1_f0.results|map(attribute='changed')|unique|list == [false]"
|
Loading…
Reference in New Issue