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.
76 lines
2.0 KiB
YAML
76 lines
2.0 KiB
YAML
# Test code for the vmware_drs_group module
|
|
# Copyright: (c) 2018, Karsten Kaj Jakobsen <kj@patientsky.com>
|
|
# GNU General Public License v3.0+ (see COPYING or https://www.gnu.org/licenses/gpl-3.0.txt)
|
|
|
|
- import_role:
|
|
name: prepare_vmware_tests
|
|
vars:
|
|
setup_attach_host: true
|
|
setup_datastore: true
|
|
setup_virtualmachines: true
|
|
|
|
- name: Create DRS VM group
|
|
vmware_drs_group:
|
|
hostname: "{{ vcenter_hostname }}"
|
|
username: "{{ vcenter_username }}"
|
|
password: "{{ vcenter_password }}"
|
|
validate_certs: False
|
|
# Options
|
|
cluster_name: '{{ ccr1 }}'
|
|
datacenter_name: '{{ dc1 }}'
|
|
group_name: TEST_VM_01
|
|
vms: "{{ virtual_machines_in_cluster | map(attribute='name') | list }}"
|
|
state: present
|
|
register: drs_vm_group_01_results
|
|
|
|
- debug:
|
|
var: drs_vm_group_01_results
|
|
|
|
- assert:
|
|
that:
|
|
- "drs_vm_group_01_results.changed"
|
|
|
|
- when: vcsim is defined or esxi_hosts | length >= 3
|
|
block:
|
|
- name: Create DRS Host group
|
|
vmware_drs_group:
|
|
hostname: "{{ vcenter_hostname }}"
|
|
username: "{{ vcenter_username }}"
|
|
password: "{{ vcenter_password }}"
|
|
validate_certs: False
|
|
cluster_name: '{{ ccr1 }}'
|
|
datacenter_name: '{{ dc1 }}'
|
|
group_name: TEST_HOST_01
|
|
hosts: "{{ esxi_hosts[0:3] }}"
|
|
state: present
|
|
register: drs_host_group_01_results
|
|
|
|
- debug:
|
|
var: drs_host_group_01_results
|
|
|
|
- assert:
|
|
that:
|
|
- "drs_host_group_01_results.changed"
|
|
|
|
- name: Delete DRS Host group
|
|
vmware_drs_group:
|
|
# Login creds
|
|
hostname: "{{ vcenter_hostname }}"
|
|
username: "{{ vcenter_username }}"
|
|
password: "{{ vcenter_password }}"
|
|
validate_certs: False
|
|
# Options
|
|
cluster_name: DC0_C0
|
|
datacenter_name: DC0
|
|
group_name: TEST_HOST_01
|
|
hosts: []
|
|
state: absent
|
|
register: drs_host_group_01_delete_results
|
|
|
|
- debug:
|
|
var: drs_host_group_01_delete_results
|
|
|
|
- assert:
|
|
that:
|
|
- "drs_host_group_01_delete_results.changed"
|