mirror of
https://github.com/ansible-collections/community.general.git
synced 2025-07-22 12:50:22 -07:00
VMware: New module vmware_vcenter_statistics (#48084)
This commit is contained in:
parent
c817bef3ae
commit
f3c4b2fc74
3 changed files with 543 additions and 0 deletions
|
@ -0,0 +1,2 @@
|
|||
shippable/vcenter/group1
|
||||
cloud/vcenter
|
|
@ -0,0 +1,115 @@
|
|||
# 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
|
Loading…
Add table
Add a link
Reference in a new issue