|
|
|
|
@ -2,78 +2,57 @@
|
|
|
|
|
# Copyright: (c) 2018, Abhijeet Kasurde <akasurde@redhat.com>
|
|
|
|
|
# GNU General Public License v3.0+ (see COPYING or https://www.gnu.org/licenses/gpl-3.0.txt)
|
|
|
|
|
|
|
|
|
|
- name: Wait for Flask controller to come up online
|
|
|
|
|
wait_for:
|
|
|
|
|
host: "{{ vcsim }}"
|
|
|
|
|
port: 5000
|
|
|
|
|
state: started
|
|
|
|
|
- import_role:
|
|
|
|
|
name: prepare_vmware_tests
|
|
|
|
|
|
|
|
|
|
- name: kill vcsim
|
|
|
|
|
uri:
|
|
|
|
|
url: http://{{ vcsim }}:5000/killall
|
|
|
|
|
|
|
|
|
|
- name: start vcsim
|
|
|
|
|
uri:
|
|
|
|
|
url: http://{{ vcsim }}:5000/spawn?cluster=2
|
|
|
|
|
register: vcsim_instance
|
|
|
|
|
|
|
|
|
|
- debug:
|
|
|
|
|
var: vcsim_instance
|
|
|
|
|
|
|
|
|
|
- name: Wait for vcsim server to come up online
|
|
|
|
|
wait_for:
|
|
|
|
|
host: "{{ vcsim }}"
|
|
|
|
|
port: 443
|
|
|
|
|
state: started
|
|
|
|
|
|
|
|
|
|
- name: get a list of Cluster from vcsim
|
|
|
|
|
uri:
|
|
|
|
|
url: http://{{ vcsim }}:5000/govc_find?filter=CCR
|
|
|
|
|
register: clusters
|
|
|
|
|
|
|
|
|
|
- name: get a cluster
|
|
|
|
|
set_fact:
|
|
|
|
|
ccr1: "{{ clusters.json[0] | basename }}"
|
|
|
|
|
|
|
|
|
|
- debug: var=ccr1
|
|
|
|
|
|
|
|
|
|
- name: get a list of datacenter
|
|
|
|
|
uri:
|
|
|
|
|
url: http://{{ vcsim }}:5000/govc_find?filter=DC
|
|
|
|
|
register: datacenters
|
|
|
|
|
|
|
|
|
|
- name: get a datacenter
|
|
|
|
|
set_fact:
|
|
|
|
|
dc1: "{{ datacenters.json[0] | basename }}"
|
|
|
|
|
|
|
|
|
|
- debug: var=dc1
|
|
|
|
|
|
|
|
|
|
- name: gather facts about all clusters in given datacenter
|
|
|
|
|
- &vc_all_data
|
|
|
|
|
name: gather facts about all clusters in the given datacenter
|
|
|
|
|
vmware_cluster_facts:
|
|
|
|
|
hostname: "{{ vcsim }}"
|
|
|
|
|
username: "{{ vcsim_instance.json.username }}"
|
|
|
|
|
password: "{{ vcsim_instance.json.password }}"
|
|
|
|
|
datacenter: "{{ dc1 }}"
|
|
|
|
|
hostname: "{{ vcenter_hostname }}"
|
|
|
|
|
username: "{{ vcenter_username }}"
|
|
|
|
|
password: "{{ vcenter_password }}"
|
|
|
|
|
validate_certs: False
|
|
|
|
|
datacenter: "{{ dc1 }}"
|
|
|
|
|
register: all_cluster_result
|
|
|
|
|
|
|
|
|
|
- name: ensure facts are gathered for all cluster
|
|
|
|
|
- &ensure_vc_all_data
|
|
|
|
|
name: ensure facts are gathered for all clusters
|
|
|
|
|
assert:
|
|
|
|
|
that:
|
|
|
|
|
- all_cluster_result.clusters
|
|
|
|
|
- not all_cluster_result.changed
|
|
|
|
|
|
|
|
|
|
- name: gather facts about given cluster
|
|
|
|
|
- <<: *vc_all_data
|
|
|
|
|
name: Gather facts about all clusters in the given datacenter in check mode
|
|
|
|
|
check_mode: yes
|
|
|
|
|
|
|
|
|
|
- debug: msg=all_cluster_result
|
|
|
|
|
|
|
|
|
|
# vmware_cluster_facts does not support check mode
|
|
|
|
|
# - <<: *ensure_vc_all_data
|
|
|
|
|
# name: Ensure facts are gathered for all clusters in check mode
|
|
|
|
|
|
|
|
|
|
- &vc_cluster_data
|
|
|
|
|
name: Gather facts about the given cluster
|
|
|
|
|
vmware_cluster_facts:
|
|
|
|
|
hostname: "{{ vcsim }}"
|
|
|
|
|
username: "{{ vcsim_instance.json.username }}"
|
|
|
|
|
password: "{{ vcsim_instance.json.password }}"
|
|
|
|
|
cluster_name: "{{ ccr1 }}"
|
|
|
|
|
hostname: "{{ vcenter_hostname }}"
|
|
|
|
|
username: "{{ vcenter_username }}"
|
|
|
|
|
password: "{{ vcenter_password }}"
|
|
|
|
|
validate_certs: False
|
|
|
|
|
cluster_name: "{{ ccr1 }}"
|
|
|
|
|
register: cluster_result
|
|
|
|
|
|
|
|
|
|
- name: ensure facts are gathered for the given cluster
|
|
|
|
|
- &ensure_vc_cluster_data
|
|
|
|
|
name: Ensure facts are gathered for the given cluster
|
|
|
|
|
assert:
|
|
|
|
|
that:
|
|
|
|
|
- cluster_result.clusters
|
|
|
|
|
- not cluster_result.changed
|
|
|
|
|
- not cluster_result.changed
|
|
|
|
|
|
|
|
|
|
- <<: *vc_cluster_data
|
|
|
|
|
name: Gather facts about the given cluster in check mode
|
|
|
|
|
check_mode: yes
|
|
|
|
|
|
|
|
|
|
# vmware_cluster_facts does not support check mode
|
|
|
|
|
# - <<: *ensure_vc_cluster_data
|
|
|
|
|
# name: Ensure facts are gathered for the given cluster in check mode
|
|
|
|
|
|