diff options
author | Luke Meyer <lmeyer@redhat.com> | 2018-01-17 10:49:00 -0500 |
---|---|---|
committer | Luke Meyer <lmeyer@redhat.com> | 2018-01-17 11:01:27 -0500 |
commit | c23910bdcb07a8644f586907fac1df6101dd7eff (patch) | |
tree | 1001b3b8fa7fc9fe1d3c8566399b2e20622cc2e6 /roles | |
parent | b4b5b685581a6c4b35953bf32d56c1f96b12ff51 (diff) | |
download | openshift-c23910bdcb07a8644f586907fac1df6101dd7eff.tar.gz openshift-c23910bdcb07a8644f586907fac1df6101dd7eff.tar.bz2 openshift-c23910bdcb07a8644f586907fac1df6101dd7eff.tar.xz openshift-c23910bdcb07a8644f586907fac1df6101dd7eff.zip |
health checks: update required pkg versions
Diffstat (limited to 'roles')
-rw-r--r-- | roles/openshift_health_checker/openshift_checks/ovs_version.py | 2 | ||||
-rw-r--r-- | roles/openshift_health_checker/openshift_checks/package_version.py | 5 |
2 files changed, 7 insertions, 0 deletions
diff --git a/roles/openshift_health_checker/openshift_checks/ovs_version.py b/roles/openshift_health_checker/openshift_checks/ovs_version.py index 980329e33..58a2692bd 100644 --- a/roles/openshift_health_checker/openshift_checks/ovs_version.py +++ b/roles/openshift_health_checker/openshift_checks/ovs_version.py @@ -20,6 +20,8 @@ class OvsVersion(NotContainerizedMixin, OpenShiftCheck): (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"], } def is_active(self): diff --git a/roles/openshift_health_checker/openshift_checks/package_version.py b/roles/openshift_health_checker/openshift_checks/package_version.py index 687df5135..28aee8b35 100644 --- a/roles/openshift_health_checker/openshift_checks/package_version.py +++ b/roles/openshift_health_checker/openshift_checks/package_version.py @@ -16,6 +16,8 @@ class PackageVersion(NotContainerizedMixin, OpenShiftCheck): (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"], } openshift_to_docker_version = { @@ -25,6 +27,9 @@ class PackageVersion(NotContainerizedMixin, OpenShiftCheck): (3, 4): "1.12", (3, 5): "1.12", (3, 6): "1.12", + (3, 7): "1.12", + (3, 8): "1.12", + (3, 9): ["1.12", "1.13"], } def is_active(self): |