-
Notifications
You must be signed in to change notification settings - Fork 108
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Change the base image for the Pbench Server container to ubi8 #3461
Change the base image for the Pbench Server container to ubi8 #3461
Conversation
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
🎉
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
There is also the util-linux
vs util-linux-core
issue. Plus Area 51 struck again...
fc1560e
to
4a10f9f
Compare
4a10f9f
to
9d566fe
Compare
Since running a container using a "newer" base image on an "older" kernel is not reliable, change the base image used to build the Pbench Server container from UBI9 to UBI8 so that it can be run on our Production server (which is currently RHEL-8.7). PBENCH-1181
util-linux depends on util-linux-core on RHEL 9, so the core dependencies will end up being installed anyway; on RHEL 8, there is no separate package for the core, so we'll get them that way there.
9d566fe
to
34fa284
Compare
34fa284
to
e367921
Compare
Subsequent investigation has revealed that the problem which this PR was intended to solve was caused by an explicit change to The going-forward-useful portions of this PR are now in #3474, and so I'm closing this PR. (I'm expecting the |
Since running a container using a "newer" base image on an "older" kernel is not reliable, this PR changes the default base image used to build the Pbench Server container from ubi9 to ubi8 so that it can be run on our Production server (which is currently RHEL-8.7).
PBENCH-1181