package_availability.py 2.2 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970
  1. # pylint: disable=missing-docstring
  2. from openshift_checks import OpenShiftCheck, OpenShiftCheckException
  3. from openshift_checks.mixins import NotContainerized
  4. class PackageAvailability(NotContainerized, OpenShiftCheck):
  5. """Check that required RPM packages are available."""
  6. name = "package_availability"
  7. tags = ["preflight"]
  8. def run(self, tmp, task_vars):
  9. try:
  10. rpm_prefix = task_vars["openshift"]["common"]["service_type"]
  11. except (KeyError, TypeError):
  12. raise OpenShiftCheckException("'openshift.common.service_type' is undefined")
  13. group_names = task_vars.get("group_names", [])
  14. packages = set()
  15. if "masters" in group_names:
  16. packages.update(self.master_packages(rpm_prefix))
  17. if "nodes" in group_names:
  18. packages.update(self.node_packages(rpm_prefix))
  19. args = {"packages": sorted(set(packages))}
  20. return self.module_executor("check_yum_update", args, tmp, task_vars)
  21. @staticmethod
  22. def master_packages(rpm_prefix):
  23. return [
  24. "{rpm_prefix}".format(rpm_prefix=rpm_prefix),
  25. "{rpm_prefix}-clients".format(rpm_prefix=rpm_prefix),
  26. "{rpm_prefix}-master".format(rpm_prefix=rpm_prefix),
  27. "bash-completion",
  28. "cockpit-bridge",
  29. "cockpit-docker",
  30. "cockpit-kubernetes",
  31. "cockpit-shell",
  32. "cockpit-ws",
  33. "etcd",
  34. "httpd-tools",
  35. ]
  36. @staticmethod
  37. def node_packages(rpm_prefix):
  38. return [
  39. "{rpm_prefix}".format(rpm_prefix=rpm_prefix),
  40. "{rpm_prefix}-node".format(rpm_prefix=rpm_prefix),
  41. "{rpm_prefix}-sdn-ovs".format(rpm_prefix=rpm_prefix),
  42. "bind",
  43. "ceph-common",
  44. "dnsmasq",
  45. "docker",
  46. "firewalld",
  47. "flannel",
  48. "glusterfs-fuse",
  49. "iptables-services",
  50. "iptables",
  51. "iscsi-initiator-utils",
  52. "libselinux-python",
  53. "nfs-utils",
  54. "ntp",
  55. "openssl",
  56. "pyparted",
  57. "python-httplib2",
  58. "PyYAML",
  59. "yum-utils",
  60. ]