|
@@ -4,6 +4,7 @@ Ansible action plugin to execute health checks in OpenShift clusters.
|
|
|
# pylint: disable=wrong-import-position,missing-docstring,invalid-name
|
|
|
import sys
|
|
|
import os
|
|
|
+from collections import defaultdict
|
|
|
|
|
|
try:
|
|
|
from __main__ import display
|
|
@@ -41,20 +42,11 @@ class ActionModule(ActionBase):
|
|
|
return result
|
|
|
|
|
|
args = self._task.args
|
|
|
- requested_checks = resolve_checks(args.get("checks", []), known_checks.values())
|
|
|
-
|
|
|
- unknown_checks = requested_checks - set(known_checks)
|
|
|
- if unknown_checks:
|
|
|
- result["failed"] = True
|
|
|
- result["msg"] = (
|
|
|
- "One or more checks are unknown: {}. "
|
|
|
- "Make sure there is no typo in the playbook and no files are missing."
|
|
|
- ).format(", ".join(unknown_checks))
|
|
|
- return result
|
|
|
+ resolved_checks = resolve_checks(args.get("checks", []), known_checks.values())
|
|
|
|
|
|
result["checks"] = check_results = {}
|
|
|
|
|
|
- for check_name in requested_checks & set(known_checks):
|
|
|
+ for check_name in resolved_checks:
|
|
|
display.banner("CHECK [{} : {}]".format(check_name, task_vars["ansible_host"]))
|
|
|
check = known_checks[check_name]
|
|
|
|
|
@@ -101,19 +93,39 @@ class ActionModule(ActionBase):
|
|
|
def resolve_checks(names, all_checks):
|
|
|
"""Returns a set of resolved check names.
|
|
|
|
|
|
- Resolving a check name involves expanding tag references (e.g., '@tag') with
|
|
|
- all the checks that contain the given tag.
|
|
|
+ Resolving a check name expands tag references (e.g., "@tag") to all the
|
|
|
+ checks that contain the given tag. OpenShiftCheckException is raised if
|
|
|
+ names contains an unknown check or tag name.
|
|
|
|
|
|
names should be a sequence of strings.
|
|
|
|
|
|
all_checks should be a sequence of check classes/instances.
|
|
|
"""
|
|
|
- resolved = set()
|
|
|
- for name in names:
|
|
|
- if name.startswith("@"):
|
|
|
- for check in all_checks:
|
|
|
- if name[1:] in check.tags:
|
|
|
- resolved.add(check.name)
|
|
|
- else:
|
|
|
- resolved.add(name)
|
|
|
+ known_check_names = set(check.name for check in all_checks)
|
|
|
+ known_tag_names = set(name for check in all_checks for name in check.tags)
|
|
|
+
|
|
|
+ check_names = set(name for name in names if not name.startswith('@'))
|
|
|
+ tag_names = set(name[1:] for name in names if name.startswith('@'))
|
|
|
+
|
|
|
+ unknown_check_names = check_names - known_check_names
|
|
|
+ unknown_tag_names = tag_names - known_tag_names
|
|
|
+
|
|
|
+ if unknown_check_names or unknown_tag_names:
|
|
|
+ msg = []
|
|
|
+ if unknown_check_names:
|
|
|
+ msg.append('Unknown check names: {}.'.format(', '.join(sorted(unknown_check_names))))
|
|
|
+ if unknown_tag_names:
|
|
|
+ msg.append('Unknown tag names: {}.'.format(', '.join(sorted(unknown_tag_names))))
|
|
|
+ msg.append('Make sure there is no typo in the playbook and no files are missing.')
|
|
|
+ raise OpenShiftCheckException('\n'.join(msg))
|
|
|
+
|
|
|
+ tag_to_checks = defaultdict(set)
|
|
|
+ for check in all_checks:
|
|
|
+ for tag in check.tags:
|
|
|
+ tag_to_checks[tag].add(check.name)
|
|
|
+
|
|
|
+ resolved = check_names.copy()
|
|
|
+ for tag in tag_names:
|
|
|
+ resolved.update(tag_to_checks[tag])
|
|
|
+
|
|
|
return resolved
|