123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778 |
- """
- Ansible module for determining if an installed version of Open vSwitch is incompatible with the
- currently installed version of OpenShift.
- """
- from openshift_checks import OpenShiftCheck, OpenShiftCheckException, get_var
- from openshift_checks.mixins import NotContainerizedMixin
- class OvsVersion(NotContainerizedMixin, OpenShiftCheck):
- """Check that packages in a package_list are installed on the host
- and are the correct version as determined by an OpenShift installation.
- """
- name = "ovs_version"
- tags = ["health"]
- openshift_to_ovs_version = {
- "3.6": "2.6",
- "3.5": "2.6",
- "3.4": "2.4",
- }
- # map major release versions across releases
- # to a common major version
- openshift_major_release_version = {
- "1": "3",
- }
- @classmethod
- def is_active(cls, task_vars):
- """Skip hosts that do not have package requirements."""
- group_names = get_var(task_vars, "group_names", default=[])
- master_or_node = 'masters' in group_names or 'nodes' in group_names
- return super(OvsVersion, cls).is_active(task_vars) and master_or_node
- def run(self, tmp, task_vars):
- args = {
- "package_list": [
- {
- "name": "openvswitch",
- "version": self.get_required_ovs_version(task_vars),
- },
- ],
- }
- return self.execute_module("rpm_version", args, task_vars=task_vars)
- def get_required_ovs_version(self, task_vars):
- """Return the correct Open vSwitch version for the current OpenShift version"""
- openshift_version = self._get_openshift_version(task_vars)
- if float(openshift_version) < 3.5:
- return self.openshift_to_ovs_version["3.4"]
- ovs_version = self.openshift_to_ovs_version.get(str(openshift_version))
- if ovs_version:
- return self.openshift_to_ovs_version[str(openshift_version)]
- msg = "There is no recommended version of Open vSwitch for the current version of OpenShift: {}"
- raise OpenShiftCheckException(msg.format(openshift_version))
- def _get_openshift_version(self, task_vars):
- openshift_version = get_var(task_vars, "openshift_image_tag")
- if openshift_version and openshift_version[0] == 'v':
- openshift_version = openshift_version[1:]
- return self._parse_version(openshift_version)
- def _parse_version(self, version):
- components = version.split(".")
- if not components or len(components) < 2:
- msg = "An invalid version of OpenShift was found for this host: {}"
- raise OpenShiftCheckException(msg.format(version))
- if components[0] in self.openshift_major_release_version:
- components[0] = self.openshift_major_release_version[components[0]]
- return '.'.join(components[:2])
|