package_availability.py 2.5 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273
  1. """Check that required RPM packages are available."""
  2. from openshift_checks import OpenShiftCheck, get_var
  3. from openshift_checks.mixins import NotContainerizedMixin
  4. class PackageAvailability(NotContainerizedMixin, OpenShiftCheck):
  5. """Check that required RPM packages are available."""
  6. name = "package_availability"
  7. tags = ["preflight"]
  8. @classmethod
  9. def is_active(cls, task_vars):
  10. """Run only when yum is the package manager as the code is specific to it."""
  11. return super(PackageAvailability, cls).is_active(task_vars) and task_vars["ansible_pkg_mgr"] == "yum"
  12. def run(self, tmp, task_vars):
  13. rpm_prefix = get_var(task_vars, "openshift", "common", "service_type")
  14. group_names = get_var(task_vars, "group_names", default=[])
  15. packages = set()
  16. if "masters" in group_names:
  17. packages.update(self.master_packages(rpm_prefix))
  18. if "nodes" in group_names:
  19. packages.update(self.node_packages(rpm_prefix))
  20. args = {"packages": sorted(set(packages))}
  21. return self.execute_module("check_yum_update", args, tmp=tmp, task_vars=task_vars)
  22. @staticmethod
  23. def master_packages(rpm_prefix):
  24. """Return a list of RPMs that we expect a master install to have available."""
  25. return [
  26. "{rpm_prefix}".format(rpm_prefix=rpm_prefix),
  27. "{rpm_prefix}-clients".format(rpm_prefix=rpm_prefix),
  28. "{rpm_prefix}-master".format(rpm_prefix=rpm_prefix),
  29. "bash-completion",
  30. "cockpit-bridge",
  31. "cockpit-docker",
  32. "cockpit-system",
  33. "cockpit-ws",
  34. "etcd",
  35. "httpd-tools",
  36. ]
  37. @staticmethod
  38. def node_packages(rpm_prefix):
  39. """Return a list of RPMs that we expect a node install to have available."""
  40. return [
  41. "{rpm_prefix}".format(rpm_prefix=rpm_prefix),
  42. "{rpm_prefix}-node".format(rpm_prefix=rpm_prefix),
  43. "{rpm_prefix}-sdn-ovs".format(rpm_prefix=rpm_prefix),
  44. "bind",
  45. "ceph-common",
  46. "dnsmasq",
  47. "docker",
  48. "firewalld",
  49. "flannel",
  50. "glusterfs-fuse",
  51. "iptables-services",
  52. "iptables",
  53. "iscsi-initiator-utils",
  54. "libselinux-python",
  55. "nfs-utils",
  56. "ntp",
  57. "openssl",
  58. "pyparted",
  59. "python-httplib2",
  60. "PyYAML",
  61. "yum-utils",
  62. ]