mixins.py 2.1 KB

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