Browse Source

health checks: tolerate ovs 2.9

Luke Meyer 7 years ago
parent
commit
43bf07fca3

+ 5 - 4
roles/openshift_health_checker/openshift_checks/ovs_version.py

@@ -18,10 +18,11 @@ class OvsVersion(NotContainerizedMixin, OpenShiftCheck):
     openshift_to_ovs_version = {
         (3, 4): "2.4",
         (3, 5): ["2.6", "2.7"],
-        (3, 6): ["2.6", "2.7", "2.8"],
-        (3, 7): ["2.6", "2.7", "2.8"],
-        (3, 8): ["2.6", "2.7", "2.8"],
-        (3, 9): ["2.6", "2.7", "2.8"],
+        (3, 6): ["2.6", "2.7", "2.8", "2.9"],
+        (3, 7): ["2.6", "2.7", "2.8", "2.9"],
+        (3, 8): ["2.6", "2.7", "2.8", "2.9"],
+        (3, 9): ["2.6", "2.7", "2.8", "2.9"],
+        (3, 10): ["2.8", "2.9"],
     }
 
     def is_active(self):

+ 5 - 4
roles/openshift_health_checker/openshift_checks/package_version.py

@@ -14,10 +14,11 @@ class PackageVersion(NotContainerizedMixin, OpenShiftCheck):
     openshift_to_ovs_version = {
         (3, 4): "2.4",
         (3, 5): ["2.6", "2.7"],
-        (3, 6): ["2.6", "2.7", "2.8"],
-        (3, 7): ["2.6", "2.7", "2.8"],
-        (3, 8): ["2.6", "2.7", "2.8"],
-        (3, 9): ["2.6", "2.7", "2.8"],
+        (3, 6): ["2.6", "2.7", "2.8", "2.9"],
+        (3, 7): ["2.6", "2.7", "2.8", "2.9"],
+        (3, 8): ["2.6", "2.7", "2.8", "2.9"],
+        (3, 9): ["2.6", "2.7", "2.8", "2.9"],
+        (3, 10): ["2.8", "2.9"],
     }
 
     openshift_to_docker_version = {

+ 7 - 1
roles/openshift_health_checker/test/ovs_version_test.py

@@ -47,7 +47,13 @@ def test_ovs_package_version(openshift_release, expected_ovs_version):
 
         return return_value
 
-    result = OvsVersion(execute_module, task_vars).run()
+    check = OvsVersion(execute_module, task_vars)
+    check.openshift_to_ovs_version = {
+        (3, 4): "2.4",
+        (3, 5): ["2.6", "2.7"],
+        (3, 6): ["2.6", "2.7", "2.8"],
+    }
+    result = check.run()
     assert result is return_value