__init__.py 2.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990
  1. """
  2. Health checks for OpenShift clusters.
  3. """
  4. import operator
  5. import os
  6. from abc import ABCMeta, abstractmethod, abstractproperty
  7. from importlib import import_module
  8. # add_metaclass is not available in the embedded six from module_utils in Ansible 2.2.1
  9. from six import add_metaclass
  10. # pylint import-error disabled because pylint cannot find the package
  11. # when installed in a virtualenv
  12. from ansible.module_utils.six.moves import reduce # pylint: disable=import-error, redefined-builtin
  13. class OpenShiftCheckException(Exception):
  14. """Raised when a check cannot proceed."""
  15. pass
  16. @add_metaclass(ABCMeta)
  17. class OpenShiftCheck(object):
  18. """A base class for defining checks for an OpenShift cluster environment."""
  19. def __init__(self, module_executor):
  20. self.module_executor = module_executor
  21. @abstractproperty
  22. def name(self):
  23. """The name of this check, usually derived from the class name."""
  24. return "openshift_check"
  25. @property
  26. def tags(self):
  27. """A list of tags that this check satisfy.
  28. Tags are used to reference multiple checks with a single '@tagname'
  29. special check name.
  30. """
  31. return []
  32. @classmethod
  33. def is_active(cls, task_vars): # pylint: disable=unused-argument
  34. """Returns true if this check applies to the ansible-playbook run."""
  35. return True
  36. @abstractmethod
  37. def run(self, tmp, task_vars):
  38. """Executes a check, normally implemented as a module."""
  39. return {}
  40. @classmethod
  41. def subclasses(cls):
  42. """Returns a generator of subclasses of this class and its subclasses."""
  43. # AUDIT: no-member makes sense due to this having a metaclass
  44. for subclass in cls.__subclasses__(): # pylint: disable=no-member
  45. yield subclass
  46. for subclass in subclass.subclasses():
  47. yield subclass
  48. def get_var(task_vars, *keys, **kwargs):
  49. """Helper function to get deeply nested values from task_vars.
  50. Ansible task_vars structures are Python dicts, often mapping strings to
  51. other dicts. This helper makes it easier to get a nested value, raising
  52. OpenShiftCheckException when a key is not found or returning a default value
  53. provided as a keyword argument.
  54. """
  55. try:
  56. value = reduce(operator.getitem, keys, task_vars)
  57. except (KeyError, TypeError):
  58. if "default" in kwargs:
  59. return kwargs["default"]
  60. raise OpenShiftCheckException("'{}' is undefined".format(".".join(map(str, keys))))
  61. return value
  62. # Dynamically import all submodules for the side effect of loading checks.
  63. EXCLUDES = (
  64. "__init__.py",
  65. "mixins.py",
  66. )
  67. for name in os.listdir(os.path.dirname(__file__)):
  68. if name.endswith(".py") and name not in EXCLUDES:
  69. import_module(__package__ + "." + name[:-3])