summaryrefslogtreecommitdiffstats
path: root/roles/openshift_health_checker/openshift_checks
diff options
context:
space:
mode:
authorMiciah Masters <miciah.masters@gmail.com>2017-08-08 16:49:51 -0400
committerMiciah Dashiel Butler Masters <mmasters@redhat.com>2017-08-11 09:50:31 -0400
commit7df38035f5e20d49d6cd5eb7a3310070a63a2f78 (patch)
treec4557e6a4faac6719e48f42021879acda92ebd00 /roles/openshift_health_checker/openshift_checks
parent566731dc4dd1aebbbf0244dc8a31eefb8cd42de5 (diff)
downloadopenshift-7df38035f5e20d49d6cd5eb7a3310070a63a2f78.tar.gz
openshift-7df38035f5e20d49d6cd5eb7a3310070a63a2f78.tar.bz2
openshift-7df38035f5e20d49d6cd5eb7a3310070a63a2f78.tar.xz
openshift-7df38035f5e20d49d6cd5eb7a3310070a63a2f78.zip
openshift_checks: allow OVS 2.7 on OCP 3.5 and 3.6
rpm_version: Allow package_list items to specify a list value for version. If a list value is provided for a package, pass the check if any version in that list is found. ovs_version: Specify both 2.6 and 2.7 as allowed versions of OVS for OpenShift versions 3.5 and 3.6.
Diffstat (limited to 'roles/openshift_health_checker/openshift_checks')
-rw-r--r--roles/openshift_health_checker/openshift_checks/ovs_version.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/roles/openshift_health_checker/openshift_checks/ovs_version.py b/roles/openshift_health_checker/openshift_checks/ovs_version.py
index d5e55bc25..363c12def 100644
--- a/roles/openshift_health_checker/openshift_checks/ovs_version.py
+++ b/roles/openshift_health_checker/openshift_checks/ovs_version.py
@@ -16,8 +16,8 @@ class OvsVersion(NotContainerizedMixin, OpenShiftCheck):
tags = ["health"]
openshift_to_ovs_version = {
- "3.6": "2.6",
- "3.5": "2.6",
+ "3.6": ["2.6", "2.7"],
+ "3.5": ["2.6", "2.7"],
"3.4": "2.4",
}