You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
|
|
# Test code for the vmware_host_scanhba module.
|
|
|
|
# Copyright: (c) 2019, Michael Eaton <me@michaeleaton.me>
|
|
|
|
# GNU General Public License v3.0+ (see COPYING or https://www.gnu.org/licenses/gpl-3.0.txt)
|
|
|
|
- when: vcsim is not defined
|
|
|
|
block:
|
|
|
|
- import_role:
|
|
|
|
name: prepare_vmware_tests
|
|
|
|
vars:
|
|
|
|
setup_attach_host: true
|
|
|
|
|
|
|
|
- name: Recan HBA's for an entire cluster (there should be at least one host as above)
|
|
|
|
vmware_host_scanhba:
|
|
|
|
hostname: "{{ vcenter_hostname }}"
|
|
|
|
username: "{{ vcenter_username }}"
|
|
|
|
password: "{{ vcenter_password }}"
|
|
|
|
validate_certs: no
|
|
|
|
cluster_name: '{{ ccr1 }}'
|
|
|
|
refresh_storage: false
|
|
|
|
register: host_scan_results
|
|
|
|
- debug: msg="{{ host_scan_results }}"
|
|
|
|
- name: ensure a change occured (as in the scan happened) and the task didnt fail
|
|
|
|
assert:
|
|
|
|
that:
|
|
|
|
- host_scan_results.changed
|
|
|
|
- not host_scan_results.failed
|