mirror of
https://github.com/ansible-collections/community.general.git
synced 2025-07-22 12:50:22 -07:00
VMware: New module: vmware_guest_disk_facts (#36026)
Signed-off-by: Abhijeet Kasurde <akasurde@redhat.com>
This commit is contained in:
parent
4cc7af7372
commit
55d117458a
3 changed files with 253 additions and 0 deletions
3
test/integration/targets/vmware_guest_disk_facts/aliases
Normal file
3
test/integration/targets/vmware_guest_disk_facts/aliases
Normal file
|
@ -0,0 +1,3 @@
|
|||
posix/ci/cloud/group4/vcenter
|
||||
cloud/vcenter
|
||||
|
|
@ -0,0 +1,54 @@
|
|||
# Test code for the vmware_guest_disk_facts 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)
|
||||
|
||||
# TODO: vcsim does not support disk information
|
||||
#- 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
|
||||
#
|
||||
#- set_fact:
|
||||
# vm1: "{{ vmlist['json'][0] }}"
|
||||
#
|
||||
#- debug: var=vm1
|
||||
#
|
||||
#- name: create new VMs with non-existent network
|
||||
# vmware_guest_disk_facts:
|
||||
# validate_certs: False
|
||||
# hostname: "{{ vcsim }}"
|
||||
# username: "{{ vcsim_instance['json']['username'] }}"
|
||||
# password: "{{ vcsim_instance['json']['password'] }}"
|
||||
# name: "{{ vm1 }}"
|
||||
# datacenter: "{{ (vm1 | basename).split('_')[0] }}"
|
||||
# register: disk_facts
|
||||
#- debug: var=disk_facts
|
||||
#
|
||||
#- name: assert that no changes were made
|
||||
# assert:
|
||||
# that:
|
||||
# - "not disk_facts.changed"
|
Loading…
Add table
Add a link
Reference in a new issue