mixins.py 2.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354
  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_containerized = self.get_var("openshift_is_containerized")
  11. return super(NotContainerizedMixin, self).is_active() and not openshift_is_containerized
  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. if self.get_var("openshift_is_containerized"):
  20. needs_docker.update(["oo_masters_to_config", "oo_etcd_to_config"])
  21. return super(DockerHostMixin, self).is_active() and bool(group_names.intersection(needs_docker))
  22. def ensure_dependencies(self):
  23. """
  24. Ensure that docker-related packages exist, but not on atomic hosts
  25. (which would not be able to install but should already have them).
  26. Returns: msg, failed
  27. """
  28. if self.get_var("openshift_is_atomic"):
  29. return "", False
  30. # NOTE: we would use the "package" module but it's actually an action plugin
  31. # and it's not clear how to invoke one of those. This is about the same anyway:
  32. result = self.execute_module_with_retries(
  33. self.get_var("ansible_pkg_mgr", default="yum"),
  34. {"name": self.dependencies, "state": "present"},
  35. )
  36. msg = result.get("msg", "")
  37. if result.get("failed"):
  38. if "No package matching" in msg:
  39. msg = "Ensure that all required dependencies can be installed via `yum`.\n"
  40. msg = (
  41. "Unable to install required packages on this host:\n"
  42. " {deps}\n{msg}"
  43. ).format(deps=',\n '.join(self.dependencies), msg=msg)
  44. failed = result.get("failed", False) or result.get("rc", 0) != 0
  45. return msg, failed