package_availability.py 2.5 KB

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