mirror of
https://github.com/ansible-collections/community.general.git
synced 2026-07-09 03:58:59 +00:00
VMware: Add check mode support to vmware_vmkernel_facts (#47286)
This commit is contained in:
parent
0f943f7584
commit
dc2eb05491
2 changed files with 19 additions and 2 deletions
|
|
@ -45,7 +45,7 @@
|
|||
|
||||
- debug: var=host1
|
||||
|
||||
- name: Gather VNICs facts about all hosts in given cluster
|
||||
- name: Gather VMkernel facts about all hosts in given cluster
|
||||
vmware_vmkernel_facts:
|
||||
hostname: "{{ vcsim }}"
|
||||
username: "{{ user }}"
|
||||
|
|
@ -59,3 +59,19 @@
|
|||
- assert:
|
||||
that:
|
||||
- host_vmkernel.host_vmk_facts is defined
|
||||
|
||||
- name: Gather VMkernel facts about all hosts in given cluster in check mode
|
||||
vmware_vmkernel_facts:
|
||||
hostname: "{{ vcsim }}"
|
||||
username: "{{ user }}"
|
||||
password: "{{ passwd }}"
|
||||
esxi_hostname: "{{ host1 }}"
|
||||
validate_certs: no
|
||||
register: host_vmkernel_check_mode
|
||||
check_mode: yes
|
||||
|
||||
- debug: var=host_vmkernel
|
||||
|
||||
- assert:
|
||||
that:
|
||||
- host_vmkernel_check_mode.host_vmk_facts is defined
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue