Bug 1922263
| Summary: | [4.4.z] real-time kernel in RHCOS is not synchronized | ||
|---|---|---|---|
| Product: | OpenShift Container Platform | Reporter: | Micah Abbott <miabbott> |
| Component: | RHCOS | Assignee: | Steve Milner <smilner> |
| Status: | CLOSED WONTFIX | QA Contact: | Micah Abbott <miabbott> |
| Severity: | urgent | Docs Contact: | |
| Priority: | high | ||
| Version: | 4.4 | CC: | bbreard, brault, dornelas, imcleod, jligon, kholtz, mapfelba, miabbott, mnguyen, mrussell, nstielau, smilner, vlaad |
| Target Milestone: | --- | ||
| Target Release: | 4.4.z | ||
| Hardware: | All | ||
| OS: | All | ||
| Whiteboard: | |||
| Fixed In Version: | Doc Type: | Bug Fix | |
| Doc Text: |
Cause: RHCOS build config was using a stage repo location for the kernel-rt package instead of the production repo location
Consequence: The kernel-rt package would not be synchronized to the vanilla kernel package
Fix: Change the RHCOS build config to use the production repo location.
Result: kernel-rt package is synchronized with vanilla kernel package
|
Story Points: | --- |
| Clone Of: | 1922262 | Environment: | |
| Last Closed: | 2021-03-08 18:04:47 UTC | Type: | --- |
| 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: | 1914469, 1914988, 1922262 | ||
| Bug Blocks: | |||
|
Description
Micah Abbott
2021-01-29 14:43:21 UTC
Moving back to MODIFIED to added to the correct errata. Verified with 4.4.0-0.nightly-2021-02-09-013322
```
$ oc get clusterversion
NAME VERSION AVAILABLE PROGRESSING SINCE STATUS
version 4.4.0-0.nightly-2021-02-09-013322 True False 21m Cluster version is 4.4.0-0.nightly-2021-02-09-013322
$ oc get nodes
NAME STATUS ROLES AGE VERSION
ci-ln-rss714k-f76d1-25nsl-master-0 Ready master 42m v1.17.1+5ef953f
ci-ln-rss714k-f76d1-25nsl-master-1 Ready master 42m v1.17.1+5ef953f
ci-ln-rss714k-f76d1-25nsl-master-2 Ready master 42m v1.17.1+5ef953f
ci-ln-rss714k-f76d1-25nsl-worker-b-wct8h Ready worker 30m v1.17.1+5ef953f
ci-ln-rss714k-f76d1-25nsl-worker-c-cmz2k Ready worker 30m v1.17.1+5ef953f
ci-ln-rss714k-f76d1-25nsl-worker-d-mfqkk Ready worker 30m v1.17.1+5ef953f
$ oc debug node/ci-ln-rss714k-f76d1-25nsl-worker-b-wct8h -- chroot /host uname -a
Starting pod/ci-ln-rss714k-f76d1-25nsl-worker-b-wct8h-debug ...
To use host binaries, run `chroot /host`
Linux ci-ln-rss714k-f76d1-25nsl-worker-b-wct8h 4.18.0-193.41.1.el8_2.x86_64 #1 SMP Wed Jan 13 11:33:33 EST 2021 x86_64 x86_64 x86_64 GNU/Linux
Removing debug pod ...
$ cat machineConfigs/worker-realtime.yaml
apiVersion: machineconfiguration.openshift.io/v1
kind: MachineConfig
metadata:
labels:
machineconfiguration.openshift.io/role: "worker"
name: 99-worker-kerneltype
spec:
kernelType: realtime
$ oc apply -f machineConfigs/worker-realtime.yaml
machineconfig.machineconfiguration.openshift.io/99-worker-kerneltype created
$ oc debug node/ci-ln-rss714k-f76d1-25nsl-worker-b-wct8h -- chroot /host uname -a
Starting pod/ci-ln-rss714k-f76d1-25nsl-worker-b-wct8h-debug ...
To use host binaries, run `chroot /host`
Linux ci-ln-rss714k-f76d1-25nsl-worker-b-wct8h 4.18.0-193.41.1.rt13.91.el8_2.x86_64 #1 SMP PREEMPT RT Wed Jan 13 15:16:38 EST 2021 x86_64 x86_64 x86_64 GNU/Linux
Removing debug pod ...
```
|