-
Notifications
You must be signed in to change notification settings - Fork 196
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
WIP: kernel-install integration #5097
Conversation
I only typed this up and made it compile. It's obviously tremendously ugly and will probably catch fire when I try to actually test it. Sending it out so folks can see what I'm thinking. Signed-off-by: Colin Walters <[email protected]>
Skipping CI for Draft Pull Request. |
PR needs rebase. 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. |
@@ -74,7 +73,6 @@ pub fn entrypoint(args: &[&str]) -> Result<()> { | |||
"yum" | "dnf" => Ok(self::yumdnf::main(host_type, args)?), | |||
"dracut" => Ok(self::dracut::main(args)?), | |||
"grubby" => Ok(self::grubby::main(args)?), | |||
"kernel-install" => Ok(self::kernel_install::main(args)?), | |||
_ => Err(anyhow!("Unknown wrapped binary: {}", name)), |
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.
This error is triggered now, I am testing with this container file:
FROM quay.io/fedora/fedora-kinoite:40
ADD target/debug/rpm-ostree /usr/bin/rpm-ostree
RUN echo "layout=ostree" > /usr/lib/kernel/install.conf
RUN cat /usr/lib/kernel/install.conf
RUN rpm-ostree override replace https://koji.fedoraproject.org/koji/buildinfo?buildID=2561864
Trying to workaround that next.
This will pair with: https://gitlab.com/fedora/bootc/base-images/-/merge_requests/62 |
Closing in favor of #5135 |
I only typed this up and made it compile. It's obviously tremendously ugly and will probably catch fire when I try to actually test it.
Sending it out so folks can see what I'm thinking.
Closes #4726