community.proxmox.proxmox_cluster_status_info module – Retrieve Proxmox VE cluster status information
Note
This module is part of the community.proxmox collection (version 1.6.0).
You might already have this collection installed if you are using the ansible package.
It is not included in ansible-core.
To check whether it is installed, run ansible-galaxy collection list.
To install it, use: ansible-galaxy collection install community.proxmox.
You need further requirements to be able to use this module,
see Requirements for details.
To use it in a playbook, specify: community.proxmox.proxmox_cluster_status_info.
Synopsis
Retrieve status information about the Proxmox VE cluster.
Returns information about both the cluster itself and the nodes within it.
Requirements
The below requirements are needed on the host that executes this module.
proxmoxer >= 2.0
requests
Parameters
Parameter |
Comments |
|---|---|
Specify the target host of the Proxmox VE cluster. Uses the |
|
Specify the password to authenticate with. Uses the |
|
Specify the target port of the Proxmox VE cluster. Uses the |
|
Time limit for requests towards the Proxmox VE API. Default: |
|
Specify the token ID. Uses the |
|
Specify the token secret. Uses the |
|
Specify the user to authenticate with. Uses the |
|
Path to a local certificate, which will be used to verify TLS connections. Ignored if |
|
Validate the TLS certificates used for the connection to the Proxmox VE API. Currently defaults to Uses the Choices:
|
Attributes
Attribute |
Support |
Description |
|---|---|---|
Action group: community.proxmox.proxmox |
Use |
|
Support: full This action does not modify state. |
Can run in |
|
Support: N/A This action does not modify state. |
Will return details on what has changed (or possibly needs changing in |
Examples
- name: Get cluster status
community.proxmox.proxmox_cluster_status_info:
api_host: proxmox1
api_user: root@pam
api_password: "{{ password | default(omit) }}"
api_token_id: "{{ token_id | default(omit) }}"
api_token_secret: "{{ token_secret | default(omit) }}"
register: cluster_status
- name: Display cluster quorum status
ansible.builtin.debug:
msg: "Cluster has quorum: {{ cluster_status.cluster_status | selectattr('type', 'equalto', 'cluster') | map(attribute='quorate') | first }}"
Return Values
Common return values are documented here, the following are the fields unique to this module:
Key |
Description |
|---|---|
List containing cluster and node status information. Returned: always, but can be empty |
|
Unique identifier for the entry. Returned: always |
|
IP address of the resolved nodename. Returned: when type is ‘node’ |
|
Proxmox VE Subscription level, indicates if eligible for enterprise support. Returned: when type is ‘node’ |
|
Indicates if this is the responding node. Returned: when type is ‘node’ |
|
Name of the cluster or node. Returned: always |
|
ID of the node from the corosync configuration. Returned: when type is ‘node’ |
|
Total count of nodes in the cluster, including offline nodes. Returned: when type is ‘cluster’ |
|
Indicates if the node is online or offline. Returned: when type is ‘node’ |
|
Indicates if there is a majority of nodes online to make decisions. Returned: when type is ‘cluster’ |
|
Type of entry, either ‘cluster’ or ‘node’. Returned: always |
|
Current version of the corosync configuration file. Returned: when type is ‘cluster’ |