24 lines
678 B
YAML
24 lines
678 B
YAML
---
|
|
# =============================================================================
|
|
# proxmox_status.yml
|
|
# Cluster health report — nodes, VMs, storage, CEPH, HA, updates.
|
|
# Safe to run at any time with no side effects.
|
|
#
|
|
# Usage:
|
|
# ansible-playbook proxmox_status.yml
|
|
# ansible-playbook proxmox_status.yml -e "status_include_ceph=false"
|
|
# =============================================================================
|
|
|
|
- name: "Proxmox | Cluster Status Report"
|
|
hosts: proxmox_cluster
|
|
gather_facts: true
|
|
|
|
vars:
|
|
status_include_vms: true
|
|
status_include_storage: true
|
|
status_include_ceph: true
|
|
status_include_ha: true
|
|
|
|
roles:
|
|
- role: proxmox_status
|