mixins.py 2.4 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758
  1. """
  2. Mixin classes meant to be used with subclasses of OpenShiftCheck.
  3. """
  4. from openshift_checks import get_var
  5. class NotContainerizedMixin(object):
  6. """Mixin for checks that are only active when not in containerized mode."""
  7. # permanent # pylint: disable=too-few-public-methods
  8. # Reason: The mixin is not intended to stand on its own as a class.
  9. @classmethod
  10. def is_active(cls, task_vars):
  11. """Only run on non-containerized hosts."""
  12. is_containerized = get_var(task_vars, "openshift", "common", "is_containerized")
  13. return super(NotContainerizedMixin, cls).is_active(task_vars) and not is_containerized
  14. class DockerHostMixin(object):
  15. """Mixin for checks that are only active on hosts that require Docker."""
  16. dependencies = []
  17. @classmethod
  18. def is_active(cls, task_vars):
  19. """Only run on hosts that depend on Docker."""
  20. is_containerized = get_var(task_vars, "openshift", "common", "is_containerized")
  21. is_node = "nodes" in get_var(task_vars, "group_names", default=[])
  22. return super(DockerHostMixin, cls).is_active(task_vars) and (is_containerized or is_node)
  23. def ensure_dependencies(self, task_vars):
  24. """
  25. Ensure that docker-related packages exist, but not on atomic hosts
  26. (which would not be able to install but should already have them).
  27. Returns: msg, failed, changed
  28. """
  29. if get_var(task_vars, "openshift", "common", "is_atomic"):
  30. return "", False, False
  31. # NOTE: we would use the "package" module but it's actually an action plugin
  32. # and it's not clear how to invoke one of those. This is about the same anyway:
  33. result = self.execute_module(
  34. get_var(task_vars, "ansible_pkg_mgr", default="yum"),
  35. {"name": self.dependencies, "state": "present"},
  36. task_vars=task_vars,
  37. )
  38. msg = result.get("msg", "")
  39. if result.get("failed"):
  40. if "No package matching" in msg:
  41. msg = "Ensure that all required dependencies can be installed via `yum`.\n"
  42. msg = (
  43. "Unable to install required packages on this host:\n"
  44. " {deps}\n{msg}"
  45. ).format(deps=',\n '.join(self.dependencies), msg=msg)
  46. failed = result.get("failed", False) or result.get("rc", 0) != 0
  47. changed = result.get("changed", False)
  48. return msg, failed, changed