- Docs »
- pacemaker_cluster - Manage pacemaker clusters
-
You are reading an unmaintained version of the Ansible documentation. Unmaintained Ansible versions can contain unfixed security vulnerabilities (CVE). Please upgrade to a maintained version. See the latest Ansible documentation.
pacemaker_cluster - Manage pacemaker clusters
- This module can manage a pacemaker cluster and nodes from Ansible using the pacemaker cli.
Parameter |
Choices/Defaults |
Comments |
force
bool |
|
Force the change of the cluster state
|
node
|
|
Specify which node of the cluster you want to manage. None == the cluster status itself, 'all' == check the status of all nodes.
|
state
required |
Choices:
- cleanup
- offline
- online
- restart
|
Indicate desired state of the cluster
|
timeout
|
Default:
300
|
Timeout when the module should considered that the action has failed
|
---
- name: Set cluster Online
hosts: localhost
gather_facts: no
tasks:
- name: Get cluster state
pacemaker_cluster:
state: online
Common return values are documented here, the following are the fields unique to this module:
Key |
Returned |
Description |
changed
bool
|
always |
True if the cluster state has changed
|
out
string
|
always |
The output of the current state of the cluster. It return a list of the nodes state.
Sample:
out: [[" overcloud-controller-0", " Online"]]}
|
rc
bool
|
always |
exit code of the module
|
This module is flagged as preview which means that it is not guaranteed to have a backwards compatible interface.
This module is flagged as community which means that it is maintained by the Ansible Community. See Module Maintenance & Support for more info.
For a list of other modules that are also maintained by the Ansible Community, see here.
Hint
If you notice any issues in this documentation you can edit this document to improve it.