package_availability.py 2.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869
  1. # pylint: disable=missing-docstring
  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. return super(PackageAvailability, cls).is_active(task_vars) and task_vars["ansible_pkg_mgr"] == "yum"
  11. def run(self, tmp, task_vars):
  12. rpm_prefix = get_var(task_vars, "openshift", "common", "service_type")
  13. group_names = get_var(task_vars, "group_names", default=[])
  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.execute_module("check_yum_update", args, tmp=tmp, task_vars=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-shell",
  31. "cockpit-ws",
  32. "etcd",
  33. "httpd-tools",
  34. ]
  35. @staticmethod
  36. def node_packages(rpm_prefix):
  37. return [
  38. "{rpm_prefix}".format(rpm_prefix=rpm_prefix),
  39. "{rpm_prefix}-node".format(rpm_prefix=rpm_prefix),
  40. "{rpm_prefix}-sdn-ovs".format(rpm_prefix=rpm_prefix),
  41. "bind",
  42. "ceph-common",
  43. "dnsmasq",
  44. "docker",
  45. "firewalld",
  46. "flannel",
  47. "glusterfs-fuse",
  48. "iptables-services",
  49. "iptables",
  50. "iscsi-initiator-utils",
  51. "libselinux-python",
  52. "nfs-utils",
  53. "ntp",
  54. "openssl",
  55. "pyparted",
  56. "python-httplib2",
  57. "PyYAML",
  58. "yum-utils",
  59. ]