-
Notifications
You must be signed in to change notification settings - Fork 4.9k
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
add ceph fs kernel driver to arm iso #18213
add ceph fs kernel driver to arm iso #18213
Conversation
This adds 2 kernel configs that I missed when contributing #16019 last year. |
Can one of the admins verify this patch? |
I think this may also need |
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.
Looks good, we will need these changes soon for Ramen.
RamenDR/ramen#1192
No news here for build the iso ? |
I saw that @afbjorklund and @medyagh approved @nirs 's PR yesterday. Do either of you have time to look at this PR? It seems like the default assigned reviewers might not have time. It's quite simple, and I've heard of a few more Rook users/devs (including myself) who are currently blocked by this. |
The Minikube ISO for aarch64 did not contain the Ceph Filesystem kernel driver build parameters present for the x86_64 build. This is critical for running Rook (https://rook.io) storage on Minikube. `CONFIG_CEPH_LIB=y` was already present, however `CONFIG_CEPH_FS=m` and `CONFIG_CEPH_FS_POSIX_ACL=y` (both present in the x86_64 image) were not present and are added here. Signed-off-by: Blaine Gardner <[email protected]>
539e9f9
to
9a60408
Compare
ok-to-build-iso |
Hi @BlaineEXE, we have updated your PR with the reference to newly built ISO. Pull the changes locally if you want to test with them or update your PR further. |
/ok-to-test |
kvm2 driver with docker runtime
Times for minikube start: 52.2s 51.6s 50.6s 51.3s 52.4s Times for minikube ingress: 26.7s 27.0s 26.6s 24.0s 23.0s docker driver with docker runtime
Times for minikube start: 25.0s 25.2s 21.7s 24.9s 24.6s Times for minikube ingress: 20.3s 20.3s 20.3s 20.3s 21.8s docker driver with containerd runtime
Times for minikube start: 20.0s 20.1s 24.0s 24.2s 24.0s Times for minikube ingress: 30.3s 30.3s 30.3s 30.3s 29.8s |
These are the flake rates of all failed tests.
To see the flake rates of all tests by environment, click 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.
Sorry for the delay
[APPROVALNOTIFIER] This PR is APPROVED This pull-request has been approved by: BlaineEXE, spowelljr 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 |
Thanks! :) |
The Minikube ISO for aarch64 did not contain the Ceph Filesystem kernel driver build parameters present for the x86_64 build. This is critical for running Rook (https://rook.io) storage on Minikube.
CONFIG_CEPH_LIB=y
was already present, howeverCONFIG_CEPH_FS=m
andCONFIG_CEPH_FS_POSIX_ACL=y
(both present in the x86_64 image) were not present and are added here.