e3591223a0
* Update incidental test aliases. * Rewrite target references for renamed targets. * Add incidental tests to CI. * Update sanity tests for incidental cloud tests. * Initial copy of incidental tests. * Copy contrib files into test. * Update paths in test. * Add support plugins. * Update plugin to work around missing deps. * Update sanity ignores. * Fix matrix entries. * Remove debug echo.
24 lines
512 B
YAML
24 lines
512 B
YAML
---
|
|
- name: Delete a datastore cluster to datacenter
|
|
vmware_datastore_cluster:
|
|
datacenter_name: "{{ dc1 }}"
|
|
datastore_cluster_name: '{{ item }}'
|
|
state: absent
|
|
with_items:
|
|
- DSC1
|
|
- DSC2
|
|
ignore_errors: yes
|
|
|
|
- name: Remove the datacenter
|
|
vmware_datacenter:
|
|
datacenter_name: '{{ item }}'
|
|
state: absent
|
|
when: vcsim is not defined
|
|
with_items:
|
|
- '{{ dc1 }}'
|
|
- datacenter_0001
|
|
|
|
- name: kill vcsim
|
|
uri:
|
|
url: "http://{{ vcsim }}:5000/killall"
|
|
when: vcsim is defined
|