mirror of
https://github.com/ansible-collections/community.general.git
synced 2026-04-21 00:01:08 +00:00
* remove pacemaker wait arg and fix race condition * fix up pacemaker resource and stonith polling * add changelog for pacemaker timeout bug * remove env from test case and fix changelog file name * Update changelogs/fragments/11750-pacemaker-wait-race-condition.yml Co-authored-by: Felix Fontein <felix@fontein.de> --------- Co-authored-by: Felix Fontein <felix@fontein.de>
106 lines
3.7 KiB
Python
106 lines
3.7 KiB
Python
# Copyright (c) 2025, Dexter Le <dextersydney2001@gmail.com>
|
|
# GNU General Public License v3.0+ (see LICENSES/GPL-3.0-or-later.txt or https://www.gnu.org/licenses/gpl-3.0.txt)
|
|
# SPDX-License-Identifier: GPL-3.0-or-later
|
|
|
|
from __future__ import annotations
|
|
|
|
import re
|
|
import time
|
|
import typing as t
|
|
|
|
from ansible_collections.community.general.plugins.module_utils.cmd_runner import CmdRunner, cmd_runner_fmt
|
|
|
|
if t.TYPE_CHECKING:
|
|
from ansible.module_utils.basic import AnsibleModule
|
|
|
|
|
|
_state_map = {
|
|
"present": "create",
|
|
"absent": "remove",
|
|
"cloned": "clone",
|
|
"status": "status",
|
|
"enabled": "enable",
|
|
"disabled": "disable",
|
|
"online": "start",
|
|
"offline": "stop",
|
|
"maintenance": "set",
|
|
"config": "config",
|
|
"cleanup": "cleanup",
|
|
}
|
|
|
|
|
|
def fmt_resource_type(value):
|
|
return [
|
|
":".join(
|
|
value[k] for k in ["resource_standard", "resource_provider", "resource_name"] if value.get(k) is not None
|
|
)
|
|
]
|
|
|
|
|
|
def fmt_resource_operation(value):
|
|
cmd = []
|
|
for op in value:
|
|
cmd.append("op")
|
|
cmd.append(op.get("operation_action"))
|
|
for operation_option in op.get("operation_option"):
|
|
cmd.append(operation_option)
|
|
|
|
return cmd
|
|
|
|
|
|
def fmt_resource_argument(value):
|
|
return ["--group" if value["argument_action"] == "group" else value["argument_action"]] + value["argument_option"]
|
|
|
|
|
|
def get_pacemaker_maintenance_mode(runner: CmdRunner) -> bool:
|
|
with runner("cli_action config") as ctx:
|
|
rc, out, err = ctx.run(cli_action="property")
|
|
maint_mode_re = re.compile(r"maintenance-mode.*true", re.IGNORECASE)
|
|
maintenance_mode_output = [line for line in out.splitlines() if maint_mode_re.search(line)]
|
|
return bool(maintenance_mode_output)
|
|
|
|
|
|
def wait_for_resource(runner: CmdRunner, cli_noun: str, name: str, wait: int, sleep_interval: int = 5) -> None:
|
|
"""Poll ``pcs <cli_noun> status <name>`` until the resource reports Started or the wait budget expires.
|
|
|
|
Raises an exception if the resource does not reach the Started state within *wait* seconds.
|
|
"""
|
|
deadline = time.monotonic() + wait
|
|
while True:
|
|
with runner("cli_action state name") as ctx:
|
|
rc, out, err = ctx.run(cli_action=cli_noun, state="status")
|
|
if out and "Started" in out:
|
|
return
|
|
if time.monotonic() >= deadline:
|
|
raise Exception(f"Timed out waiting {wait}s for {cli_noun} resource '{name}' to start")
|
|
time.sleep(sleep_interval)
|
|
|
|
|
|
def pacemaker_runner(module: AnsibleModule, **kwargs) -> CmdRunner:
|
|
runner_command = ["pcs"]
|
|
runner = CmdRunner(
|
|
module,
|
|
command=runner_command,
|
|
arg_formats=dict(
|
|
cli_action=cmd_runner_fmt.as_list(),
|
|
state=cmd_runner_fmt.as_map(_state_map),
|
|
name=cmd_runner_fmt.as_list(),
|
|
resource_type=cmd_runner_fmt.as_func(fmt_resource_type),
|
|
resource_option=cmd_runner_fmt.as_list(),
|
|
resource_operation=cmd_runner_fmt.as_func(fmt_resource_operation),
|
|
resource_meta=cmd_runner_fmt.stack(cmd_runner_fmt.as_opt_val)("meta"),
|
|
resource_argument=cmd_runner_fmt.as_func(fmt_resource_argument),
|
|
resource_clone_ids=cmd_runner_fmt.as_list(),
|
|
resource_clone_meta=cmd_runner_fmt.as_list(),
|
|
apply_all=cmd_runner_fmt.as_bool("--all"),
|
|
agent_validation=cmd_runner_fmt.as_bool("--agent-validation"),
|
|
wait=cmd_runner_fmt.as_opt_eq_val("--wait"),
|
|
config=cmd_runner_fmt.as_fixed("config"),
|
|
force=cmd_runner_fmt.as_bool("--force"),
|
|
version=cmd_runner_fmt.as_fixed("--version"),
|
|
output_format=cmd_runner_fmt.as_opt_eq_val("--output-format"),
|
|
),
|
|
**kwargs,
|
|
)
|
|
return runner
|