package_version.py 1.1 KB

12345678910111213141516171819202122232425
  1. # pylint: disable=missing-docstring
  2. from openshift_checks import OpenShiftCheck, get_var
  3. from openshift_checks.mixins import NotContainerizedMixin
  4. class PackageVersion(NotContainerizedMixin, OpenShiftCheck):
  5. """Check that available RPM packages match the required versions."""
  6. name = "package_version"
  7. tags = ["preflight"]
  8. @classmethod
  9. def is_active(cls, task_vars):
  10. """Skip hosts that do not have package requirements."""
  11. group_names = get_var(task_vars, "group_names", default=[])
  12. master_or_node = 'masters' in group_names or 'nodes' in group_names
  13. return super(PackageVersion, cls).is_active(task_vars) and master_or_node
  14. def run(self, tmp, task_vars):
  15. args = {
  16. "requested_openshift_release": get_var(task_vars, "openshift_release", default=''),
  17. "openshift_deployment_type": get_var(task_vars, "openshift_deployment_type"),
  18. "rpm_prefix": get_var(task_vars, "openshift", "common", "service_type"),
  19. }
  20. return self.execute_module("aos_version", args, tmp, task_vars)