Bug 2087114
| Summary: | Add simple-procfs-kmod in modprobe example in README.md | ||
|---|---|---|---|
| Product: | OpenShift Container Platform | Reporter: | Enrique Belarte <ebelarte> |
| Component: | Driver Toolkit | Assignee: | Enrique Belarte <ebelarte> |
| Status: | CLOSED ERRATA | QA Contact: | Udi Kalifon <ukalifon> |
| Severity: | low | Docs Contact: | |
| Priority: | unspecified | ||
| Version: | 4.11 | CC: | bthurber, dagray, yshnaidm |
| Target Milestone: | --- | ||
| Target Release: | 4.11.0 | ||
| Hardware: | Unspecified | ||
| OS: | Unspecified | ||
| Whiteboard: | |||
| Fixed In Version: | Doc Type: | If docs needed, set a value | |
| Doc Text: | Story Points: | --- | |
| Clone Of: | Environment: | ||
| Last Closed: | 2022-08-10 11:12:29 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: | |||
Note that this is referring to DTK's repo: https://github.com/openshift/driver-toolkit.git 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 (Important: OpenShift Container Platform 4.11.0 bug fix and security update), 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/RHSA-2022:5069 |
Description of problem: Instructions on how to use simple-kmod at README.md do not include additional simple-procfs-kmod in the modprobe command, so last example output in README.md is not consistent: Example output simple_procfs_kmod 16384 0 simple_kmod 16384 0 In order to load both kernel modules this : lifecycle: postStart: exec: command: ["modprobe", "-v", "simple-kmod"] preStop: exec: command: ["modprobe", "-r", "simple-kmod"] should be changed by this: lifecycle: postStart: exec: command: ["modprobe", "-v", "-a" , "simple-kmod", "simple-procfs-kmod"] preStop: exec: command: ["modprobe", "-r", "-a" , "simple-kmod", "simple-procfs-kmod"]