-
Notifications
You must be signed in to change notification settings - Fork 115
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
NO-JIRA: common.yaml: disable composefs on all arches on el9 #1700
NO-JIRA: common.yaml: disable composefs on all arches on el9 #1700
Conversation
d9ae116
to
2a61323
Compare
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.
/lgtm
/retest-all |
/retest |
1 similar comment
/retest |
@jlebon: This pull request explicitly references no jira issue. In response to this:
Instructions for interacting with me using PR comments are available here. If you have questions or suggestions related to my behavior, please file an issue against the openshift-eng/jira-lifecycle-plugin repository. |
/retest |
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.
/lgtm
/retest |
1 similar comment
/retest |
/retest |
2 similar comments
/retest |
/retest |
/retest-required |
There are issues currently on ppc64le and kernel-64k in el9 that break with composefs. So it's not sufficient to do an architecture check anyway. See: https://issues.redhat.com/browse/RHEL-63985. The upcoming release of libostree will turn on composefs by default, so it's not sufficient to delete `prepare-root.conf`; we need to explicitly turn it off. See: ostreedev/ostree#3353.
2a61323
to
f775192
Compare
Now that ostreedev/ostree#3353 is coming, I removed the reference to the old bootimage issue and changed the code to instead disable it only on el9. |
@jlebon: This pull request explicitly references no jira issue. In response to this:
Instructions for interacting with me using PR comments are available here. If you have questions or suggestions related to my behavior, please file an issue against the openshift-eng/jira-lifecycle-plugin repository. |
@jlebon: all tests passed! Full PR test history. Your PR dashboard. Instructions for interacting with me using PR comments are available here. If you have questions or suggestions related to my behavior, please file an issue against the kubernetes-sigs/prow repository. I understand the commands that are listed here. |
/lgtm |
# https://issues.redhat.com/browse/RHEL-63985 | ||
if [ -f /usr/lib/ostree/prepare-root.conf ] && [[ $(rpm -q kernel) = *.el9.* ]]; then | ||
grep -q 'enabled = true' /usr/lib/ostree/prepare-root.conf | ||
sed -i -e 's,enabled = true,enabled = no,' /usr/lib/ostree/prepare-root.conf |
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.
feels a little weird to switch from one boolean set (true/false) to another (yes/no) here.
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.
yes true, but no = false
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.
/lgtm
[APPROVALNOTIFIER] This PR is APPROVED This pull-request has been approved by: c4rt0, dustymabe, jlebon, Prashanth684, travier The full list of commands accepted by this bot can be found here. The pull request process is described here
Needs approval from an approver in each of these files:
Approvers can indicate their approval by writing |
There are issues currently on ppc64le and kernel-64k in el9 that break
with composefs. So it's not sufficient to do an architecture check
anyway. See: https://issues.redhat.com/browse/RHEL-63985.
The upcoming release of libostree will turn on composefs by default, so
it's not sufficient to delete
prepare-root.conf
; we need to explicitlyturn it off. See: ostreedev/ostree#3353.