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
|
@ -189,7 +189,8 @@ def main():
|
|||
argument_spec=argument_spec,
|
||||
required_one_of=[
|
||||
['cluster_name', 'esxi_hostname'],
|
||||
]
|
||||
],
|
||||
supports_check_mode=True
|
||||
)
|
||||
|
||||
vmware_vmk_config = VmkernelFactsManager(module)
|
||||
|
|
|
@ -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…
Reference in a new issue