mixins.py 2.3 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253
  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. pkg_manager = get_var(task_vars, "ansible_pkg_mgr", default="yum")
  34. result = self.module_executor(pkg_manager, {"name": self.dependencies, "state": "present"}, task_vars)
  35. msg = result.get("msg", "")
  36. if result.get("failed"):
  37. if "No package matching" in msg:
  38. msg = "Ensure that all required dependencies can be installed via `yum`.\n"
  39. msg = (
  40. "Unable to install required packages on this host:\n"
  41. " {deps}\n{msg}"
  42. ).format(deps=',\n '.join(self.dependencies), msg=msg)
  43. return msg, result.get("failed") or result.get("rc", 0) != 0, result.get("changed")