Bug 1749024
| Summary: | [3.11] Ensure minimum kernel version during upgrade | |||
|---|---|---|---|---|
| Product: | OpenShift Container Platform | Reporter: | Brenton Leanhardt <bleanhar> | |
| Component: | Installer | Assignee: | Russell Teague <rteague> | |
| Installer sub component: | openshift-ansible | QA Contact: | Weihua Meng <wmeng> | |
| Status: | CLOSED ERRATA | Docs Contact: | ||
| Severity: | medium | |||
| Priority: | unspecified | CC: | alchan, asadawar, jialiu, rbost, rteague, sknauss, wmeng | |
| Version: | 3.11.0 | |||
| Target Milestone: | --- | |||
| Target Release: | 3.11.z | |||
| Hardware: | Unspecified | |||
| OS: | Unspecified | |||
| Whiteboard: | ||||
| Fixed In Version: | Doc Type: | Bug Fix | ||
| Doc Text: |
Add a check to ensure the installed kernel meets the required minimum to avoid network issues. This check is run during prerequisites, scaleup and upgrade.
|
Story Points: | --- | |
| Clone Of: | ||||
| : | 1749028 1749029 1751223 (view as bug list) | Environment: | ||
| Last Closed: | 2019-09-24 08:08:09 UTC | Type: | Bug | |
| Regression: | --- | Mount Type: | --- | |
| Documentation: | --- | CRM: | ||
| Verified Versions: | Category: | --- | ||
| oVirt Team: | --- | RHEL 7.3 requirements from Atomic Host: | ||
| Cloudforms Team: | --- | Target Upstream Version: | ||
| Embargoed: | ||||
| Bug Depends On: | ||||
| Bug Blocks: | 1749028, 1749029, 1751223 | |||
|
Description
Brenton Leanhardt
2019-09-04 17:34:55 UTC
Will be submitting an update based on feedback in https://github.com/openshift/openshift-ansible/issues/11883 need we follow doc or update doc for RHEL version? Base OS: Red Hat Enterprise Linux (RHEL) 7.4 or later with the "Minimal" installation option and the latest packages from the Extras channel, or RHEL Atomic Host 7.4.5 or later. https://docs.openshift.com/container-platform/3.11/install/prerequisites.html#hardware in code minimum_kernel_version: "7.6": "3.10.0-957.27.2.el7" "7.6": "3.10.0-957.27.2" "7.7": "3.10.0-1062.el7" "7.7": "3.10.0-1062" Seem like this PR introduce some issues:
TASK [Ensure minimum kernel version] *******************************************
Tuesday 10 September 2019 16:51:35 +0800 (0:00:00.628) 0:00:17.824 *****
fatal: [qe-sreg-3criogcemaster-etcd-1.0910-lqe.qe.rhcloud.com]: FAILED! => {"changed": false, "msg": "The installed kernel version does not meet the required minimum for RHEL 7.7.\nPlease update the kernel before continuing.\nMinimum Kernel Version: 3.10.0-1062.el7\nInstalled Kernel Version: 3.10.0-1062.1.1.el7.x86_64\nReference: https://bugzilla.redhat.com/show_bug.cgi?id=1749024\n"}
fatal: [qe-sreg-3criogcenode-registry-router-1.0910-lqe.qe.rhcloud.com]: FAILED! => {"changed": false, "msg": "The installed kernel version does not meet the required minimum for RHEL 7.7.\nPlease update the kernel before continuing.\nMinimum Kernel Version: 3.10.0-1062.el7\nInstalled Kernel Version: 3.10.0-1062.1.1.el7.x86_64\nReference: https://bugzilla.redhat.com/show_bug.cgi?id=1749024\n"}
fatal: [qe-sreg-3criogcenode-1.0910-lqe.qe.rhcloud.com]: FAILED! => {"changed": false, "msg": "The installed kernel version does not meet the required minimum for RHEL 7.7.\nPlease update the kernel before continuing.\nMinimum Kernel Version: 3.10.0-1062.el7\nInstalled Kernel Version: 3.10.0-1062.1.1.el7.x86_64\nReference: https://bugzilla.redhat.com/show_bug.cgi?id=1749024\n"}
fatal: [qe-sreg-3criogcenode-2.0910-lqe.qe.rhcloud.com]: FAILED! => {"changed": false, "msg": "The installed kernel version does not meet the required minimum for RHEL 7.7.\nPlease update the kernel before continuing.\nMinimum Kernel Version: 3.10.0-1062.el7\nInstalled Kernel Version: 3.10.0-1062.1.1.el7.x86_64\nReference: https://bugzilla.redhat.com/show_bug.cgi?id=1749024\n"}
Actually 3.10.0-1062.1.1.el7.x86_64 > 3.10.0-1062.el7, so it shouldn't fail here.
Fixed in openshift-ansible-3.11.145-1.git.0.61bc1df.el7
kernel 3.10.0-1062.1.1.el7.x86_64 can be installed without error.
for kernel requirement, can report correctly
fatal: [ec2-54-210-41-10.compute-1.amazonaws.com]: FAILED! => {"changed": false, "msg": "The installed kernel version does not meet the required minimum for RHEL 7.6.\nPlease update the kernel before continuing.\nMinimum Kernel Version: 3.10.0-957.27.2\nInstalled Kernel Version: 3.10.0-931.el7.x86_64\nReference: https://bugzilla.redhat.com/show_bug.cgi?id=1749024\n"}
Since the problem described in this bug report should be resolved in a recent advisory, it has been closed with a resolution of ERRATA. For information on the advisory, and where to find the updated files, follow the link below. If the solution does not work for you, open a new bug report. https://access.redhat.com/errata/RHBA-2019:2816 |