mirror of https://github.com/ansible/ansible.git
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.
38 lines
1.3 KiB
YAML
38 lines
1.3 KiB
YAML
- when: vcsim is not defined
|
|
block:
|
|
- import_role:
|
|
name: prepare_vmware_tests
|
|
vars:
|
|
setup_attach_host: true
|
|
- name: get host facts through a vcenter
|
|
vmware_host_facts:
|
|
validate_certs: False
|
|
hostname: "{{ vcenter_hostname }}"
|
|
username: "{{ vcenter_username }}"
|
|
password: "{{ vcenter_password }}"
|
|
esxi_hostname: '{{ esxi1 }}'
|
|
register: facts
|
|
- debug: var=facts
|
|
- name: verify some data,like ansible_processor
|
|
assert:
|
|
that:
|
|
- "'ansible_hostname' in facts['ansible_facts']"
|
|
- "'ansible_processor' in facts['ansible_facts']"
|
|
- "'ansible_in_maintenance_mode' in facts['ansible_facts']"
|
|
- "'ansible_uptime' in facts['ansible_facts']"
|
|
|
|
- name: get host facts through from a host
|
|
vmware_host_facts:
|
|
validate_certs: False
|
|
hostname: '{{ esxi1 }}'
|
|
username: '{{ esxi_user }}'
|
|
password: '{{ esxi_password }}'
|
|
register: facts
|
|
- debug: var=facts
|
|
- name: verify some data,like ansible_processor
|
|
assert:
|
|
that:
|
|
- "'ansible_hostname' in facts['ansible_facts']"
|
|
- "'ansible_processor' in facts['ansible_facts']"
|
|
- "'ansible_in_maintenance_mode' in facts['ansible_facts']"
|
|
- "'ansible_uptime' in facts['ansible_facts']" |