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.
116 lines
2.9 KiB
YAML
116 lines
2.9 KiB
YAML
# Test code for the vmware_vcenter_statistics module.
|
|
# Copyright: (c) 2018, Christian Kotte <christian.kotte@gmx.de>
|
|
# GNU General Public License v3.0+ (see COPYING or https://www.gnu.org/licenses/gpl-3.0.txt)
|
|
|
|
- name: store the vcenter container ip
|
|
set_fact:
|
|
vcsim: "{{ lookup('env', 'vcenter_host') }}"
|
|
|
|
- debug: var=vcsim
|
|
|
|
- name: Wait for Flask controller to come up online
|
|
wait_for:
|
|
host: "{{ vcsim }}"
|
|
port: 5000
|
|
state: started
|
|
|
|
- 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 datacenter
|
|
uri:
|
|
url: http://{{ vcsim }}:5000/govc_find?filter=DC
|
|
register: datacenters
|
|
|
|
- name: get a datacenter
|
|
set_fact:
|
|
dc1: "{{ datacenters.json[0] | basename }}"
|
|
|
|
- name: Configure statistics in check mode
|
|
vmware_vcenter_statistics:
|
|
hostname: "{{ vcsim }}"
|
|
username: "{{ vcsim_instance.json.username }}"
|
|
password: "{{ vcsim_instance.json.password }}"
|
|
interval_past_day:
|
|
enabled: true
|
|
interval_minutes: 5
|
|
save_for_days: 3
|
|
level: 2
|
|
interval_past_week:
|
|
enabled: true
|
|
interval_minutes: 30
|
|
save_for_weeks: 1
|
|
level: 2
|
|
interval_past_month:
|
|
enabled: true
|
|
interval_hours: 2
|
|
save_for_months: 1
|
|
level: 1
|
|
interval_past_year:
|
|
enabled: true
|
|
interval_days: 1
|
|
save_for_years: 1
|
|
level: 1
|
|
validate_certs: no
|
|
register: statistics_results_check_mode
|
|
check_mode: yes
|
|
|
|
- debug: msg="{{ statistics_results_check_mode }}"
|
|
|
|
- name: ensure statistics were configured
|
|
assert:
|
|
that:
|
|
# Doesn't really work with vcsim. No matter which settings are used; they are always shown as already configured!?
|
|
- statistics_results_check_mode.changed == False
|
|
|
|
- name: Configure statistics
|
|
vmware_vcenter_statistics:
|
|
hostname: "{{ vcsim }}"
|
|
username: "{{ vcsim_instance.json.username }}"
|
|
password: "{{ vcsim_instance.json.password }}"
|
|
interval_past_day:
|
|
enabled: true
|
|
interval_minutes: 5
|
|
save_for_days: 3
|
|
level: 2
|
|
interval_past_week:
|
|
enabled: true
|
|
interval_minutes: 30
|
|
save_for_weeks: 1
|
|
level: 2
|
|
interval_past_month:
|
|
enabled: true
|
|
interval_hours: 2
|
|
save_for_months: 1
|
|
level: 1
|
|
interval_past_year:
|
|
enabled: true
|
|
interval_days: 1
|
|
save_for_years: 1
|
|
level: 1
|
|
validate_certs: no
|
|
register: statistics_results
|
|
|
|
- debug: msg="{{ statistics_results }}"
|
|
|
|
- name: ensure statistics were configured
|
|
assert:
|
|
that:
|
|
# Doesn't really work with vcsim. No matter which settings are used; they are always shown as already configured!?
|
|
- statistics_results.changed == False
|