1
0
Fork 0
mirror of https://github.com/ansible-collections/community.general.git synced 2026-07-08 11:39:02 +00:00

VMware: new module : vmware_guest_boot_facts (#43240)

Signed-off-by: Abhijeet Kasurde <akasurde@redhat.com>
This commit is contained in:
Abhijeet Kasurde 2018-08-07 22:08:37 +05:30 committed by GitHub
parent 281c8f6861
commit 3dcbf3b003
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
3 changed files with 256 additions and 0 deletions

View file

@ -0,0 +1,2 @@
cloud/vcenter
unsupported

View file

@ -0,0 +1,76 @@
# Test code for the vmware_guest_boot_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)
- 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: Gather facts about VM boot order
vmware_guest_boot_facts:
validate_certs: no
hostname: "{{ vcsim }}"
username: "{{ vcsim_instance['json']['username'] }}"
password: "{{ vcsim_instance['json']['password'] }}"
name: "{{ item|basename }}"
with_items: "{{ vmlist['json'] }}"
register: boot_d1_c1_f0
- debug: var=boot_d1_c1_f0
- name: assert that changes were made
assert:
that:
- boot_d1_c1_f0.results.vm_boot_facts.current_boot_delay is defined
- boot_d1_c1_f0.results.vm_boot_facts.current_boot_firmware is defined
- boot_d1_c1_f0.results.vm_boot_facts.current_boot_order is defined
- boot_d1_c1_f0.results.vm_boot_facts.current_boot_retry_delay is defined
- boot_d1_c1_f0.results.vm_boot_facts.current_boot_retry_enabled is defined
- boot_d1_c1_f0.results.vm_boot_facts.current_enter_bios_setup is defined
- name: Gather facts about VM boot order in check mode
vmware_guest_boot_facts:
validate_certs: no
hostname: "{{ vcsim }}"
username: "{{ vcsim_instance['json']['username'] }}"
password: "{{ vcsim_instance['json']['password'] }}"
name: "{{ item|basename }}"
with_items: "{{ vmlist['json'] }}"
check_mode: yes
register: boot_d1_c1_f0
- debug: var=boot_d1_c1_f0
- name: assert that changes were made
assert:
that:
- boot_d1_c1_f0.results.vm_boot_facts.current_boot_delay is defined
- boot_d1_c1_f0.results.vm_boot_facts.current_boot_firmware is defined
- boot_d1_c1_f0.results.vm_boot_facts.current_boot_order is defined
- boot_d1_c1_f0.results.vm_boot_facts.current_boot_retry_delay is defined
- boot_d1_c1_f0.results.vm_boot_facts.current_boot_retry_enabled is defined
- boot_d1_c1_f0.results.vm_boot_facts.current_enter_bios_setup is defined