ovs_version.py 2.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778
  1. """
  2. Ansible module for determining if an installed version of Open vSwitch is incompatible with the
  3. currently installed version of OpenShift.
  4. """
  5. from openshift_checks import OpenShiftCheck, OpenShiftCheckException, get_var
  6. from openshift_checks.mixins import NotContainerizedMixin
  7. class OvsVersion(NotContainerizedMixin, OpenShiftCheck):
  8. """Check that packages in a package_list are installed on the host
  9. and are the correct version as determined by an OpenShift installation.
  10. """
  11. name = "ovs_version"
  12. tags = ["health"]
  13. openshift_to_ovs_version = {
  14. "3.6": "2.6",
  15. "3.5": "2.6",
  16. "3.4": "2.4",
  17. }
  18. # map major release versions across releases
  19. # to a common major version
  20. openshift_major_release_version = {
  21. "1": "3",
  22. }
  23. @classmethod
  24. def is_active(cls, task_vars):
  25. """Skip hosts that do not have package requirements."""
  26. group_names = get_var(task_vars, "group_names", default=[])
  27. master_or_node = 'masters' in group_names or 'nodes' in group_names
  28. return super(OvsVersion, cls).is_active(task_vars) and master_or_node
  29. def run(self, tmp, task_vars):
  30. args = {
  31. "package_list": [
  32. {
  33. "name": "openvswitch",
  34. "version": self.get_required_ovs_version(task_vars),
  35. },
  36. ],
  37. }
  38. return self.execute_module("rpm_version", args, task_vars=task_vars)
  39. def get_required_ovs_version(self, task_vars):
  40. """Return the correct Open vSwitch version for the current OpenShift version"""
  41. openshift_version = self._get_openshift_version(task_vars)
  42. if float(openshift_version) < 3.5:
  43. return self.openshift_to_ovs_version["3.4"]
  44. ovs_version = self.openshift_to_ovs_version.get(str(openshift_version))
  45. if ovs_version:
  46. return self.openshift_to_ovs_version[str(openshift_version)]
  47. msg = "There is no recommended version of Open vSwitch for the current version of OpenShift: {}"
  48. raise OpenShiftCheckException(msg.format(openshift_version))
  49. def _get_openshift_version(self, task_vars):
  50. openshift_version = get_var(task_vars, "openshift_image_tag")
  51. if openshift_version and openshift_version[0] == 'v':
  52. openshift_version = openshift_version[1:]
  53. return self._parse_version(openshift_version)
  54. def _parse_version(self, version):
  55. components = version.split(".")
  56. if not components or len(components) < 2:
  57. msg = "An invalid version of OpenShift was found for this host: {}"
  58. raise OpenShiftCheckException(msg.format(version))
  59. if components[0] in self.openshift_major_release_version:
  60. components[0] = self.openshift_major_release_version[components[0]]
  61. return '.'.join(components[:2])